PHP 인터페이스 Kraken\Util\Invoker\InvokerInterface

파일 보기 프로젝트 열기: kraken-php/framework 0 사용 예제들

공개 메소드들

메소드 설명
call ( string $func, mixed[] $args = [] ) : mixed Call function $func with given arguments $args.
existsProxy ( string $func ) : boolean Check if proxy for function $func exists.
getProxy ( string $func ) : mixed Get proxy for function $func.
removeProxy ( string $func ) Remove proxy for function $func.
setProxy ( string $func, callable $callable ) Set proxy for function $func.

메소드 상세

call() 공개 메소드

Call function $func with given arguments $args.
public call ( string $func, mixed[] $args = [] ) : mixed
$func string
$args mixed[]
리턴 mixed

existsProxy() 공개 메소드

Check if proxy for function $func exists.
public existsProxy ( string $func ) : boolean
$func string
리턴 boolean

getProxy() 공개 메소드

Get proxy for function $func.
public getProxy ( string $func ) : mixed
$func string
리턴 mixed

removeProxy() 공개 메소드

Remove proxy for function $func.
public removeProxy ( string $func )
$func string

setProxy() 공개 메소드

Set proxy for function $func.
public setProxy ( string $func, callable $callable )
$func string
$callable callable