Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | abstract class TrackingQuery extends Query |
||
10 | { |
||
11 | use HasRelationships; |
||
12 | |||
13 | /** |
||
14 | * @var TrackRequest|null |
||
15 | */ |
||
16 | protected $request; |
||
17 | |||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $parameters; |
||
22 | |||
23 | /** |
||
24 | * TrackActionQuery constructor. |
||
25 | * |
||
26 | * @param TrackRequest|null $request |
||
27 | * @param array|null $parameters |
||
28 | */ |
||
29 | public function __construct(TrackRequest $request = null, array $parameters = null) |
||
40 |
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.