/home/techb158/ileadtechnology.com/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core
Edit: /home/techb158/ileadtechnology.com/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php (826B)
_matcher = $matcher;
}
public function matches($arg)
{
return !$this->_matcher->matches($arg);
}
public function describeTo(Description $description)
{
$description->appendText('not ')->appendDescriptionOf($this->_matcher);
}
/**
* Matches if value does not match $value.
*
* @factory
*/
public static function not($value)
{
return new self(Util::wrapValueWithIsEqual($value));
}
}