芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php
_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)); } }