PHP 클래스 Eloquent\Phony\Invocation\AbstractWrappedInvocable

상속: extends AbstractInvocable, implements Eloquent\Phony\Invocation\WrappedInvocable
파일 보기 프로젝트 열기: eloquent/phony 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$callback
$isAnonymous
$label

공개 메소드들

메소드 설명
__construct ( callable | null $callback, string | null $label ) Construct a new wrapped invocable.
callback ( ) : callable Get the callback.
isAnonymous ( ) : boolean Returns true if anonymous.
label ( ) : string | null Get the label.
setLabel ( string | null $label ) Set the label.

메소드 상세

__construct() 공개 메소드

Construct a new wrapped invocable.
public __construct ( callable | null $callback, string | null $label )
$callback callable | null The callback.
$label string | null The label.

callback() 공개 메소드

Get the callback.
public callback ( ) : callable
리턴 callable The callback.

isAnonymous() 공개 메소드

Returns true if anonymous.
public isAnonymous ( ) : boolean
리턴 boolean True if anonymous.

label() 공개 메소드

Get the label.
public label ( ) : string | null
리턴 string | null The label.

setLabel() 공개 메소드

Set the label.
public setLabel ( string | null $label )
$label string | null The label.

프로퍼티 상세

$callback 보호되어 있는 프로퍼티

protected $callback

$isAnonymous 보호되어 있는 프로퍼티

protected $isAnonymous

$label 보호되어 있는 프로퍼티

protected $label