/home/techb158/dev.balacoffee.com/vendor/mockery/mockery/library/Mockery/Matcher
Edit: /home/techb158/dev.balacoffee.com/vendor/mockery/mockery/library/Mockery/Matcher/Type.php (1209B)
_expected == 'real') {
$function = 'is_float';
} else {
$function = 'is_' . strtolower($this->_expected);
}
if (function_exists($function)) {
return $function($actual);
} elseif (is_string($this->_expected)
&& (class_exists($this->_expected) || interface_exists($this->_expected))) {
return $actual instanceof $this->_expected;
}
return false;
}
/**
* Return a string representation of this Matcher
*
* @return string
*/
public function __toString()
{
return '<' . ucfirst($this->_expected) . '>';
}
}