1 | <?php |
||
7 | class DingoGenerator extends AbstractGenerator |
||
8 | { |
||
9 | /** |
||
10 | * @param \Illuminate\Routing\Route $route |
||
11 | * @param array $bindings |
||
12 | * @param array $headers |
||
13 | * @param bool $withResponse |
||
14 | * |
||
15 | * @return array |
||
16 | */ |
||
17 | public function processRoute($route, $bindings = [], $headers = [], $withResponse = true) |
||
43 | |||
44 | /** |
||
45 | * Prepares / Disables route middlewares. |
||
46 | * |
||
47 | * @param bool $disable |
||
48 | * |
||
49 | * @return void |
||
50 | */ |
||
51 | public function prepareMiddleware($disable = true) |
||
56 | |||
57 | /** |
||
58 | * {@inheritdoc} |
||
59 | */ |
||
60 | public function callRoute($method, $uri, $parameters = [], $cookies = [], $files = [], $server = [], $content = null) |
||
70 | |||
71 | /** |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public function getUri($route) |
||
78 | |||
79 | /** |
||
80 | * {@inheritdoc} |
||
81 | */ |
||
82 | public function getMethods($route) |
||
86 | } |
||
87 |