platform/api/laravel/Routing/Contracts/ControllerDispatcher.yaml

43 lines
812 B
YAML
Raw Normal View History

2024-09-02 17:44:11 +00:00
name: ControllerDispatcher
class_comment: null
dependencies:
- name: Route
type: class
source: Illuminate\Routing\Route
properties: []
methods:
- name: dispatch
visibility: public
parameters:
- name: route
- name: controller
- name: method
comment: '# * Dispatch a request to a given controller and method.
# *
# * @param \Illuminate\Routing\Route $route
# * @param mixed $controller
# * @param string $method
# * @return mixed'
- name: getMiddleware
visibility: public
parameters:
- name: controller
- name: method
comment: '# * Get the middleware for the controller instance.
# *
# * @param \Illuminate\Routing\Controller $controller
# * @param string $method
# * @return array'
traits:
- Illuminate\Routing\Route
interfaces: []