芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/vendor/mockery/mockery/library/Mockery/Matcher/Type.php
_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) . '>'; } }