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