/var/www/cobraambalaj/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text
NameSizeModeActions
IsEmptyString.php18200644editdlrm
IsEqualIgnoringCase.php12080644editdlrm
IsEqualIgnoringWhiteSpace.php15930644editdlrm
MatchesPattern.php7470644editdlrm
StringContains.php8500644editdlrm
StringContainsIgnoringCase.php8100644editdlrm
StringContainsInOrder.php15650644editdlrm
StringEndsWith.php7550644editdlrm
StringStartsWith.php7580644editdlrm
SubstringMatcher.php10950644editdlrm
Edit: /var/www/cobraambalaj/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEmptyString.php (1820B)
_empty = $empty; } public function matches($item) { return $this->_empty ? ($item === '') : is_string($item) && $item !== ''; } public function describeTo(Description $description) { $description->appendText($this->_empty ? 'an empty string' : 'a non-empty string'); } /** * Matches if value is a zero-length string. * * @factory emptyString */ public static function isEmptyString() { if (!self::$_INSTANCE) { self::$_INSTANCE = new self(true); } return self::$_INSTANCE; } /** * Matches if value is null or a zero-length string. * * @factory nullOrEmptyString */ public static function isEmptyOrNullString() { if (!self::$_NULL_OR_EMPTY_INSTANCE) { self::$_NULL_OR_EMPTY_INSTANCE = AnyOf::anyOf( IsNull::nullvalue(), self::isEmptyString() ); } return self::$_NULL_OR_EMPTY_INSTANCE; } /** * Matches if value is a non-zero-length string. * * @factory nonEmptyString */ public static function isNonEmptyString() { if (!self::$_NOT_INSTANCE) { self::$_NOT_INSTANCE = new self(false); } return self::$_NOT_INSTANCE; } }