Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ReorderNestedModuleItems implements ShouldQueue |
||
14 | { |
||
15 | use Dispatchable, InteractsWithQueue, Queueable; |
||
16 | |||
17 | protected $modelClass; |
||
18 | protected $ids; |
||
19 | |||
20 | public function __construct(Model $model, array $ids) |
||
21 | { |
||
22 | $this->modelClass = get_class($model); |
||
23 | $this->ids = $ids; |
||
24 | } |
||
25 | |||
26 | public function handle() |
||
31 | } |
||
32 | } |
||
33 |
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.