| Total Complexity | 4 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 12 | class LastPageHandler extends AbstractHandler | ||
| 13 | { | ||
| 14 | use HandlesTotalPages; | ||
|  | |||
| 15 | |||
| 16 | /** | ||
| 17 | * Determine whether the handler can handle the APIs configuration | ||
| 18 | * | ||
| 19 | * @return bool | ||
| 20 | */ | ||
| 21 | public function matches(): bool | ||
| 24 | } | ||
| 25 | |||
| 26 | /** | ||
| 27 | * Handle the APIs configuration | ||
| 28 | * | ||
| 29 | * @return Traversable | ||
| 30 | */ | ||
| 31 | public function handle(): Traversable | ||
| 38 |