public function PHPUnit_Framework_Constraint_Or::toString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/Or.php \PHPUnit_Framework_Constraint_Or::toString()
Returns a string representation of the constraint.
Return value
string
Overrides PHPUnit_Framework_SelfDescribing::toString
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Constraint/ Or.php, line 83
Class
- PHPUnit_Framework_Constraint_Or
- Logical OR.
Code
public function toString() {
$text = '';
foreach ($this->constraints as $key => $constraint) {
if ($key > 0) {
$text .= ' or ';
}
$text .= $constraint
->toString();
}
return $text;
}