芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/test.joruridoctor.com/vendor/mockery/mockery/library/Mockery/Matcher/Type.php
_expected) . '>'; } /** * Check if the actual value matches the expected. * * @template TMixed * * @param TMixed $actual * * @return bool */ public function match(&$actual) { $function = $this->_expected === 'real' ? 'is_float' : 'is_' . strtolower($this->_expected); if (function_exists($function)) { return $function($actual); } if (! is_string($this->_expected)) { return false; } if (class_exists($this->_expected) || interface_exists($this->_expected)) { return $actual instanceof $this->_expected; } return false; } }