芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/mockery/mockery/NotAnyOf.php
'; } /** * Check if the actual value does not match the expected (in this * case it's specifically NOT expected). * * @template TMixed * * @param TMixed $actual * * @return bool */ public function match(&$actual) { foreach ($this->_expected as $exp) { if ($actual === $exp || $actual == $exp) { return false; } } return true; } }