PHP Class Dusterio\AwsWorker\Controllers\LaravelController

Afficher le fichier Open project: dusterio/laravel-aws-worker

Protected Properties

Свойство Type Description
$middleware array The middleware defined on the controller.

Méthodes publiques

Méthode Description
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.

Method Details

callAction() public méthode

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

getAfterFilters() public méthode

Get the registered "after" filters.
Deprecation: since version 5.1.
public getAfterFilters ( ) : array
Résultat array

getBeforeFilters() public méthode

Get the registered "before" filters.
Deprecation: since version 5.1.
public getBeforeFilters ( ) : array
Résultat array

getMiddleware() public méthode

Get the middleware assigned to the controller.
public getMiddleware ( ) : array
Résultat array

getMiddlewareForMethod() public méthode

Get the middleware for a given method.
public getMiddlewareForMethod ( string $method ) : array
$method string
Résultat array

middleware() public méthode

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

Property Details

$middleware protected_oe property

The middleware defined on the controller.
protected array $middleware
Résultat array