PATH:
home
/
lab2454c
/
netxzero.com
/
carbon-credit
/
vendor
/
hamcrest
/
hamcrest-php
/
hamcrest
/
Hamcrest
/
Core
<?php namespace Hamcrest\Core; /* Copyright (c) 2009 hamcrest.org */ use Hamcrest\BaseMatcher; use Hamcrest\Description; /** * A matcher that always returns <code>true</code>. */ class IsAnything extends BaseMatcher { private $_message; public function __construct($message = 'ANYTHING') { $this->_message = $message; } public function matches($item) { return true; } public function describeTo(Description $description) { $description->appendText($this->_message); } /** * This matcher always evaluates to true. * * @param string $description A meaningful string used when describing itself. * * @return \Hamcrest\Core\IsAnything * @factory */ public static function anything($description = 'ANYTHING') { return new self($description); } }
[-] IsNull.php
[edit]
[-] IsIdentical.php
[edit]
[-] IsInstanceOf.php
[edit]
[-] HasToString.php
[edit]
[+]
..
[-] Set.php
[edit]
[-] ShortcutCombination.php
[edit]
[-] IsNot.php
[edit]
[-] IsTypeOf.php
[edit]
[-] AllOf.php
[edit]
[-] IsCollectionContaining.php
[edit]
[-] Every.php
[edit]
[-] DescribedAs.php
[edit]
[-] AnyOf.php
[edit]
[-] CombinableMatcher.php
[edit]
[-] IsEqual.php
[edit]
[-] Is.php
[edit]
[-] IsSame.php
[edit]
[-] IsAnything.php
[edit]