1 | <?php |
||
7 | final class FacadeDocListV2Response |
||
8 | { |
||
9 | /** |
||
10 | * @var int |
||
11 | */ |
||
12 | private $total; |
||
13 | /** |
||
14 | * @var FacadeDocListV2ItemResponse[] |
||
15 | */ |
||
16 | private $results; |
||
17 | |||
18 | public function __construct(int $total, FacadeDocListV2ItemResponse ...$results) |
||
22 | |||
23 | public function getTotal(): int |
||
27 | |||
28 | /** |
||
29 | * @return FacadeDocListV2ItemResponse[] |
||
30 | */ |
||
31 | public function getResults(): array |
||
35 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.