| 1 | <?php |
||
| 9 | class AdminController extends Controller |
||
| 10 | { |
||
| 11 | public function getList(ConfigContract $config) |
||
| 16 | |||
| 17 | public function config(ConfigContract $config) |
||
| 21 | |||
| 22 | public function create() |
||
| 26 | |||
| 27 | public function store() |
||
| 30 | |||
| 31 | public function edit(ConfigContract $config, $id) |
||
| 35 | |||
| 36 | public function update() |
||
| 39 | |||
| 40 | public function delete(ConfigContract $config, $id) |
||
| 45 | |||
| 46 | public function batchDelete(ConfigContract $config) |
||
| 49 | |||
| 50 | public function forceDelete(ConfigContract $config, $id) |
||
| 55 | |||
| 56 | public function restore(ConfigContract $config, $id) |
||
| 61 | } |
||
| 62 |
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.