1 | <?php |
||
10 | class AdminController extends Controller |
||
11 | { |
||
12 | public function index() |
||
16 | |||
17 | public function getList(ComponentInterface $component) |
||
25 | |||
26 | |||
27 | public function config(ComponentInterface $component) |
||
35 | |||
36 | public function getCreateInfo(ComponentInterface $component) |
||
43 | |||
44 | public function create(ComponentInterface $component) |
||
52 | |||
53 | public function store(ComponentInterface $component) |
||
61 | |||
62 | public function getEditInfo(ComponentInterface $component, $id) |
||
69 | |||
70 | public function edit(ComponentInterface $component, $id) |
||
78 | |||
79 | public function update() |
||
82 | |||
83 | public function delete(ModelFactoryInterface $modelFactory, $id) |
||
88 | |||
89 | public function batchDelete(ModelFactoryInterface $modelFactory) |
||
92 | |||
93 | public function forceDelete(ModelFactoryInterface $modelFactory, $id) |
||
98 | |||
99 | public function restore(ModelFactoryInterface $modelFactory, $id) |
||
104 | } |
||
105 |
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.