'; } /** * 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; } }