1 | <?php |
||
13 | class TerminalController extends AuthorizedController |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | protected $resource = 'run-terminal'; |
||
19 | |||
20 | /** |
||
21 | * Show terminal index. |
||
22 | * |
||
23 | * @param \Illuminate\Http\Request $request |
||
24 | * @param \Cortex\Console\Services\Terminal $terminal |
||
25 | * |
||
26 | * @return \Illuminate\View\View |
||
27 | */ |
||
28 | public function index(Request $request, Terminal $terminal) |
||
66 | |||
67 | /** |
||
68 | * Process the form for store/update of the given resource. |
||
69 | * |
||
70 | * @param \Illuminate\Http\Request $request |
||
71 | * |
||
72 | * @return \Illuminate\Http\JsonResponse |
||
73 | */ |
||
74 | public function execute(Terminal $terminal, Request $request) |
||
85 | |||
86 | /** |
||
87 | * Render exception. |
||
88 | * |
||
89 | * @param \Exception $exception |
||
90 | * |
||
91 | * @return \Illuminate\View\View |
||
92 | */ |
||
93 | protected function renderException(Exception $exception) |
||
97 | } |
||
98 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.