Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function getScripts() |
||
21 | { |
||
22 | $columns = [ |
||
23 | // 'id', |
||
24 | // 'name', |
||
25 | 'data', |
||
26 | 'top', |
||
27 | ]; |
||
28 | |||
29 | $result = $this->startConditions() |
||
30 | ->active() |
||
|
|||
31 | ->select($columns) |
||
32 | ->toBase() |
||
33 | ->get(); |
||
34 | |||
35 | $result = $result->groupBy('top'); |
||
36 | // dd($result); |
||
37 | return $result; |
||
38 | } |
||
55 |
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.