| 1 | <?php | ||
| 5 | class PageView | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @var int | ||
| 9 | */ | ||
| 10 | public $page; | ||
| 11 | |||
| 12 | /** | ||
| 13 | * @var int | ||
| 14 | */ | ||
| 15 | public $limit; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @var int | ||
| 19 | */ | ||
| 20 | public $pages; | ||
| 21 | |||
| 22 | /** | ||
| 23 | * @var int | ||
| 24 | */ | ||
| 25 | public $total; | ||
| 26 | |||
| 27 | /** | ||
| 28 | * @var PageLinksView | ||
| 29 | */ | ||
| 30 | public $links; | ||
| 31 | |||
| 32 | /** | ||
| 33 | * @var array | ||
| 34 | */ | ||
| 35 | public $items = []; | ||
| 36 | |||
| 37 | public function __construct($links) | ||
| 41 | } | ||
| 42 | 
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.