1 | <?php |
||
17 | class Main extends AdminController |
||
18 | { |
||
19 | public $type = 'app'; |
||
20 | |||
21 | // import heavy actions |
||
22 | use Main\ActionIndex { |
||
23 | index as actionIndex; |
||
24 | } |
||
25 | |||
26 | use Main\ActionSettings { |
||
27 | settings as actionSettings; |
||
28 | } |
||
29 | |||
30 | use Main\ActionUpdates { |
||
31 | updates as actionUpdates; |
||
32 | } |
||
33 | |||
34 | use Main\ActionSessions { |
||
35 | sessions as actionSessions; |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Main constructor. Disable parent inheritance of typical app version checking |
||
40 | */ |
||
41 | public function __construct() |
||
45 | |||
46 | /** |
||
47 | * Manage files via elFinder |
||
48 | * @return string |
||
49 | * @throws SyntaxException |
||
50 | */ |
||
51 | public function actionFiles(): ?string |
||
57 | |||
58 | /** |
||
59 | * Show antivirus view |
||
60 | * @return string |
||
61 | * @throws SyntaxException |
||
62 | */ |
||
63 | public function actionAntivirus(): ?string |
||
67 | |||
68 | /** |
||
69 | * Set debugging cookie to current user session |
||
70 | */ |
||
71 | public function actionDebugcookie(): void |
||
77 | |||
78 | /** |
||
79 | * List available routes |
||
80 | * @return string |
||
81 | * @throws SyntaxException |
||
82 | */ |
||
83 | public function actionRouting(): ?string |
||
91 | |||
92 | /** |
||
93 | * Show add form for routing |
||
94 | * @return string |
||
95 | * @throws SyntaxException |
||
96 | */ |
||
97 | public function actionAddroute(): ?string |
||
112 | |||
113 | /** |
||
114 | * Delete scheme route |
||
115 | * @throws SyntaxException |
||
116 | * @return string |
||
117 | */ |
||
118 | public function actionDeleteroute(): ?string |
||
134 | |||
135 | /** |
||
136 | * Clear cached data |
||
137 | * @return string |
||
138 | * @throws SyntaxException |
||
139 | */ |
||
140 | public function actionCache(): ?string |
||
154 | } |
||
155 |
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.