/home/techb158/ileadtechnology.com/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core
NameSizeModeActions
AllOf.php14520644editdlrm
AnyOf.php12620644editdlrm
CombinableMatcher.php17810644editdlrm
DescribedAs.php18490644editdlrm
Every.php13380644editdlrm
HasToString.php12730644editdlrm
Is.php13550644editdlrm
IsAnything.php8750644editdlrm
IsCollectionContaining.php21560644editdlrm
IsEqual.php8350644editdlrm
IsIdentical.php7080644editdlrm
IsInstanceOf.php17040644editdlrm
IsNot.php8260644editdlrm
IsNull.php9760644editdlrm
IsSame.php10940644editdlrm
IsTypeOf.php16810644editdlrm
Set.php24080644editdlrm
ShortcutCombination.php9200644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Every.php (1338B)
_matcher = $matcher; } protected function matchesSafelyWithDiagnosticDescription($items, Description $mismatchDescription) { foreach ($items as $item) { if (!$this->_matcher->matches($item)) { $mismatchDescription->appendText('an item '); $this->_matcher->describeMismatch($item, $mismatchDescription); return false; } } return true; } public function describeTo(Description $description) { $description->appendText('every item is ')->appendDescriptionOf($this->_matcher); } /** * @param Matcher $itemMatcher * A matcher to apply to every element in an array. * * @return \Hamcrest\Core\Every * Evaluates to TRUE for a collection in which every item matches $itemMatcher * * @factory */ public static function everyItem(Matcher $itemMatcher) { return new self($itemMatcher); } }