1 | <?php |
||
9 | class LaravelGenerator extends AbstractGenerator |
||
10 | { |
||
11 | /** |
||
12 | * @param Route $route |
||
13 | * |
||
14 | * @return mixed |
||
15 | */ |
||
16 | protected function getUri($route) |
||
20 | |||
21 | /** |
||
22 | * @param \Illuminate\Routing\Route $route |
||
23 | * @param array $bindings |
||
24 | * @param array $headers |
||
25 | * @param bool $withResponse |
||
26 | * |
||
27 | * @return array |
||
28 | */ |
||
29 | public function processRoute($route, $bindings = [], $headers = [], $withResponse = true) |
||
58 | |||
59 | /** |
||
60 | * Prepares / Disables route middlewares |
||
61 | * |
||
62 | * @param boolean $disable |
||
63 | * |
||
64 | * @return void |
||
65 | */ |
||
66 | public function prepareMiddleware($disable = true) |
||
70 | |||
71 | /** |
||
72 | * Call the given URI and return the Response. |
||
73 | * |
||
74 | * @param string $method |
||
75 | * @param string $uri |
||
76 | * @param array $parameters |
||
77 | * @param array $cookies |
||
78 | * @param array $files |
||
79 | * @param array $server |
||
80 | * @param string $content |
||
81 | * |
||
82 | * @return \Illuminate\Http\Response |
||
83 | */ |
||
84 | public function callRoute($method, $uri, $parameters = [], $cookies = [], $files = [], $server = [], $content = null) |
||
108 | } |
||
109 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.