1 | <?php |
||
16 | trait admin { |
||
17 | static function admin___get_settings () { |
||
27 | /** |
||
28 | * @param \cs\Request $Request |
||
29 | * |
||
30 | * @throws ExitException |
||
31 | */ |
||
32 | static function admin___save_settings ($Request) { |
||
41 | /** |
||
42 | * @param \cs\Request $Request |
||
43 | * |
||
44 | * @return array |
||
45 | * |
||
46 | * @throws ExitException |
||
47 | */ |
||
48 | static function admin_sections_get ($Request) { |
||
51 | /** |
||
52 | * @param \cs\Request $Request |
||
53 | * @param \cs\Response $Response |
||
54 | * |
||
55 | * @return array |
||
1 ignored issue
–
show
|
|||
56 | * |
||
57 | * @throws ExitException |
||
58 | */ |
||
59 | static function admin_sections_post ($Request, $Response) { |
||
75 | /** |
||
76 | * @param \cs\Request $Request |
||
77 | * |
||
78 | * @return array |
||
1 ignored issue
–
show
|
|||
79 | * |
||
80 | * @throws ExitException |
||
81 | */ |
||
82 | static function admin_sections_put ($Request) { |
||
96 | /** |
||
97 | * @param \cs\Request $Request |
||
98 | * |
||
99 | * @return array |
||
1 ignored issue
–
show
|
|||
100 | * |
||
101 | * @throws ExitException |
||
102 | */ |
||
103 | static function admin_sections_delete ($Request) { |
||
116 | } |
||
117 |
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.