ok
Direktori : /home2/selectio/public_html/fms-worksuite/vendor/mockery/mockery/library/Mockery/Matcher/ |
Current File : /home2/selectio/public_html/fms-worksuite/vendor/mockery/mockery/library/Mockery/Matcher/IsSame.php |
<?php namespace Mockery\Matcher; class IsSame extends MatcherAbstract { /** * Check if the actual value matches the expected. * * @param mixed $actual * @return bool */ public function match(&$actual) { return $this->_expected === $actual; } /** * Return a string representation of this Matcher * * @return string */ public function __toString() { return '<IsSame>'; } }