/home/techb158/dev.balacoffee.com/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest
NameSizeModeActions
Arrays/-0755rm
Collection/-0755rm
Core/-0755rm
Internal/-0755rm
Number/-0755rm
Text/-0755rm
Type/-0755rm
Xml/-0755rm
AssertionError.php1190644editdlrm
BaseDescription.php31790644editdlrm
BaseMatcher.php5650644editdlrm
Description.php16880644editdlrm
DiagnosingMatcher.php6030644editdlrm
FeatureMatcher.php19930644editdlrm
Matcher.php16270644editdlrm
MatcherAssert.php33870644editdlrm
Matchers.php189610644editdlrm
NullDescription.php6990644editdlrm
SelfDescribing.php5350644editdlrm
StringDescription.php11230644editdlrm
TypeSafeDiagnosingMatcher.php8410644editdlrm
TypeSafeMatcher.php29180644editdlrm
Util.php20650644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matcher.php (1627B)
* Matcher implementations should NOT directly implement this interface. * Instead, extend the {@link Hamcrest\BaseMatcher} abstract class, * which will ensure that the Matcher API can grow to support * new features and remain compatible with all Matcher implementations. *

* For easy access to common Matcher implementations, use the static factory * methods in {@link Hamcrest\CoreMatchers}. * * @see Hamcrest\CoreMatchers * @see Hamcrest\BaseMatcher */ interface Matcher extends SelfDescribing { /** * Evaluates the matcher for argument $item. * * @param mixed $item the object against which the matcher is evaluated. * * @return boolean true if $item matches, * otherwise false. * * @see Hamcrest\BaseMatcher */ public function matches($item); /** * Generate a description of why the matcher has not accepted the item. * The description will be part of a larger description of why a matching * failed, so it should be concise. * This method assumes that matches($item) is false, but * will not check this. * * @param mixed $item The item that the Matcher has rejected. * @param Description $description * @return */ public function describeMismatch($item, Description $description); }