| Conditions | 3 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function __invoke() |
||
| 20 | { |
||
| 21 | return function (int $perPage = 15, string $pageName = 'page', int $page = null, int $total = null, array $options = []): LengthAwarePaginator { |
||
| 22 | $page = $page ?: LengthAwarePaginator::resolveCurrentPage($pageName); |
||
| 23 | |||
| 24 | $results = $this->forPage($page, $perPage); |
||
|
|
|||
| 25 | |||
| 26 | $total = $total ?: $this->count(); |
||
| 27 | |||
| 28 | $options += [ |
||
| 29 | 'path' => LengthAwarePaginator::resolveCurrentPath(), |
||
| 30 | 'pageName' => $pageName, |
||
| 31 | ]; |
||
| 32 | |||
| 33 | return new LengthAwarePaginator($results, $total, $perPage, $page, $options); |
||
| 34 | }; |
||
| 35 | } |
||
| 36 | } |
||
| 37 |
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.