/home/techb158/ileadtechnology.com/vendor/mockery/mockery/library/Mockery/Matcher
Edit: /home/techb158/ileadtechnology.com/vendor/mockery/mockery/library/Mockery/Matcher/Contains.php (1714B)
_expected as $exp) {
$match = false;
foreach ($values as $val) {
if ($exp === $val || $exp == $val) {
$match = true;
break;
}
}
if ($match === false) {
return false;
}
}
return true;
}
/**
* Return a string representation of this Matcher
*
* @return string
*/
public function __toString()
{
$return = '
_expected as $v) {
$elements[] = (string) $v;
}
$return .= implode(', ', $elements) . ']>';
return $return;
}
}