1 | <?php |
||
35 | class CreateFormOfPayment extends BaseWsMessage |
||
36 | { |
||
37 | /** |
||
38 | * @var TransactionContext |
||
39 | */ |
||
40 | public $transactionContext; |
||
41 | |||
42 | /** |
||
43 | * @var BestEffort[] |
||
44 | */ |
||
45 | public $bestEffort = []; |
||
46 | |||
47 | /** |
||
48 | * @var ReservationControlInformation |
||
49 | */ |
||
50 | public $reservationControlInformation; |
||
51 | |||
52 | /** |
||
53 | * @var FopGroup[] |
||
54 | */ |
||
55 | public $fopGroup = []; |
||
56 | |||
57 | /** |
||
58 | * CreateFormOfPayment constructor. |
||
59 | * |
||
60 | * @param FopCreateFopOptions $options |
||
61 | */ |
||
62 | 1 | public function __construct(FopCreateFopOptions $options) |
|
66 | } |
||
67 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.