1 | <?php |
||
12 | class TerminalController extends AuthorizedController |
||
13 | { |
||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | protected $resource = 'run-terminal'; |
||
18 | |||
19 | /** |
||
20 | * Show terminal index. |
||
21 | * |
||
22 | * @param \Illuminate\Http\Request $request |
||
23 | * @param \Cortex\Console\Services\Terminal $terminal |
||
24 | * |
||
25 | * @throws \Exception |
||
26 | * |
||
27 | * @return \Illuminate\View\View |
||
28 | */ |
||
29 | public function index(Request $request, Terminal $terminal) |
||
67 | |||
68 | /** |
||
69 | * Process the form for store/update of the given resource. |
||
70 | * |
||
71 | * @param \Illuminate\Http\Request $request |
||
72 | * |
||
73 | * @throws \Exception |
||
74 | * |
||
75 | * @return \Illuminate\Http\JsonResponse |
||
76 | */ |
||
77 | public function execute(Terminal $terminal, Request $request) |
||
88 | |||
89 | /** |
||
90 | * Render exception. |
||
91 | * |
||
92 | * @param \Exception $exception |
||
93 | * |
||
94 | * @return \Illuminate\View\View |
||
95 | */ |
||
96 | protected function renderException(Exception $exception) |
||
100 | } |
||
101 |
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.