Fuel\Validation\Result::setResult PHP Method

setResult() public method

Since: 2.0
public setResult ( boolean $isValid )
$isValid boolean
    public function setResult($isValid)
    {
        $this->result = $isValid;
        return $this;
    }

Usage Example

Beispiel #1
0
 public function testMergeWithStatus()
 {
     $result1 = new Result();
     $result1->setResult(true);
     // merging this should cause the $result1 to no longer be valid
     $result2 = new Result();
     $result2->setResult(false);
     $result1->merge($result2);
     $this->assertFalse($result1->isValid());
 }
All Usage Examples Of Fuel\Validation\Result::setResult