PHP 클래스 Eloquent\Phony\Matcher\WrappedMatcher

상속: implements Eloquent\Phony\Matcher\Matcher
파일 보기 프로젝트 열기: eloquent/phony

보호된 프로퍼티들

프로퍼티 타입 설명
$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