1 | <?php |
||
34 | class DisplayHistory extends BaseWsMessage |
||
35 | { |
||
36 | /** |
||
37 | * @var DisplayHistory\ScrollingDetails |
||
38 | */ |
||
39 | public $scrollingDetails; |
||
40 | |||
41 | /** |
||
42 | * @var DisplayHistory\PnrInfo |
||
43 | */ |
||
44 | public $pnrInfo; |
||
45 | |||
46 | /** |
||
47 | * @var DisplayHistory\RedundantElements |
||
48 | */ |
||
49 | public $redundantElements; |
||
50 | |||
51 | /** |
||
52 | * @var DisplayHistory\Predicate[] |
||
53 | */ |
||
54 | public $predicate = []; |
||
55 | |||
56 | /** |
||
57 | * DisplayHistory constructor. |
||
58 | * |
||
59 | * @param PnrDisplayHistoryOptions $options |
||
60 | */ |
||
61 | public function __construct(PnrDisplayHistoryOptions $options) |
||
65 | } |
||
66 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.