PHP 클래스 Dusterio\AwsWorker\Controllers\LaravelController

파일 보기 프로젝트 열기: dusterio/laravel-aws-worker

보호된 프로퍼티들

프로퍼티 타입 설명
$middleware array The middleware defined on the controller.

공개 메소드들

메소드 설명
callAction ( string $method, array $parameters ) : Response Execute an action on the controller.
getAfterFilters ( ) : array Get the registered "after" filters.
getBeforeFilters ( ) : array Get the registered "before" filters.
getMiddleware ( ) : array Get the middleware assigned to the controller.
getMiddlewareForMethod ( string $method ) : array Get the middleware for a given method.
middleware ( string $middleware, array $options = [] ) : void Define a middleware on the controller.

메소드 상세

callAction() 공개 메소드

Execute an action on the controller.
public callAction ( string $method, array $parameters ) : Response
$method string
$parameters array
리턴 Symfony\Component\HttpFoundation\Response

getAfterFilters() 공개 메소드

Get the registered "after" filters.
사용 중단: since version 5.1.
public getAfterFilters ( ) : array
리턴 array

getBeforeFilters() 공개 메소드

Get the registered "before" filters.
사용 중단: since version 5.1.
public getBeforeFilters ( ) : array
리턴 array

getMiddleware() 공개 메소드

Get the middleware assigned to the controller.
public getMiddleware ( ) : array
리턴 array

getMiddlewareForMethod() 공개 메소드

Get the middleware for a given method.
public getMiddlewareForMethod ( string $method ) : array
$method string
리턴 array

middleware() 공개 메소드

Define a middleware on the controller.
public middleware ( string $middleware, array $options = [] ) : void
$middleware string
$options array
리턴 void

프로퍼티 상세

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

The middleware defined on the controller.
protected array $middleware
리턴 array