| 1 | <?php |
||
| 8 | class AdminController extends Controller |
||
| 9 | { |
||
| 10 | public function index() |
||
| 14 | |||
| 15 | public function getList(ModelFactoryInterface $modelFactory) |
||
| 19 | |||
| 20 | public function config(ModelFactoryInterface $modelFactory) |
||
| 24 | |||
| 25 | public function create() |
||
| 29 | |||
| 30 | public function store(ModelFactoryInterface $modelFactory) |
||
| 34 | |||
| 35 | public function edit(ModelFactoryInterface $modelFactory, $id) |
||
| 39 | |||
| 40 | public function update() |
||
| 43 | |||
| 44 | public function delete(ModelFactoryInterface $modelFactory, $id) |
||
| 49 | |||
| 50 | public function batchDelete(ModelFactoryInterface $modelFactory) |
||
| 53 | |||
| 54 | public function forceDelete(ModelFactoryInterface $modelFactory, $id) |
||
| 59 | |||
| 60 | public function restore(ModelFactoryInterface $modelFactory, $id) |
||
| 65 | } |
||
| 66 |
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.