PHP Класс Eloquent\Phony\Matcher\WrappedMatcher

Наследование: implements Eloquent\Phony\Matcher\Matcher
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$matcher

Открытые методы

Метод Описание
__construct ( object $matcher ) Construct a new wrapped matcher.
__toString ( ) : string Describe this matcher.
describe ( Eloquent\Phony\Exporter\Exporter $exporter = null ) : string Describe this matcher.
matcher ( ) : object Get the wrapped matcher.
matches ( mixed $value ) : boolean Returns true if $value matches this matcher's criteria.

Описание методов

__construct() публичный Метод

Construct a new wrapped matcher.
public __construct ( object $matcher )
$matcher object The matcher to wrap.

__toString() публичный Метод

Describe this matcher.
public __toString ( ) : string
Результат string The description.

describe() публичный Метод

Describe this matcher.
public describe ( Eloquent\Phony\Exporter\Exporter $exporter = null ) : string
$exporter Eloquent\Phony\Exporter\Exporter The exporter to use.
Результат string The description.

matcher() публичный Метод

Get the wrapped matcher.
public matcher ( ) : object
Результат object The matcher.

matches() публичный Метод

Returns true if $value matches this matcher's criteria.
public matches ( mixed $value ) : boolean
$value mixed The value to check.
Результат boolean True if the value matches.

Описание свойств

$matcher защищенное свойство

protected $matcher