1 | <?php |
||
7 | abstract class Config implements ConfigInterface |
||
8 | { |
||
9 | use HasAttributesTrait; |
||
10 | |||
11 | protected $defaultPermissions = [ |
||
12 | 'view' => true, |
||
13 | 'create' => true, |
||
14 | 'update' => true, |
||
15 | 'delete' => true, |
||
16 | ]; |
||
17 | |||
18 | public function __construct(array $attributes) |
||
23 | |||
24 | protected function parse() |
||
28 | |||
29 | protected function parsePermission() |
||
47 | |||
48 | public function getOption($key, $default = null) |
||
52 | |||
53 | public function __toString() |
||
57 | } |
||
58 |
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.