1 | <?php |
||
9 | class SettingsController extends Controller |
||
10 | { |
||
11 | /** |
||
12 | * Show the requested settings page if it exists. |
||
13 | * |
||
14 | * @param string $page Settings page name. |
||
15 | * |
||
16 | * @return \Illuminate\Http\Response |
||
17 | */ |
||
18 | public function show($page) |
||
30 | |||
31 | /** |
||
32 | * Show the projects settings page. |
||
33 | * |
||
34 | * @return \Illuminate\Http\Response |
||
35 | */ |
||
36 | private function showProjects() |
||
49 | |||
50 | /** |
||
51 | * Show the pages settings page. |
||
52 | * |
||
53 | * @return \Illuminate\Http\Response |
||
54 | */ |
||
55 | private function showPages() |
||
68 | } |
||
69 |
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.