| 1 | <?php |
||
| 12 | class SofortPayment extends Payment |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $issuerId; |
||
|
|
|||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $description; |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | private $bic; |
||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $iban; |
||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | private $name; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * IdealPayment constructor. |
||
| 37 | * @param Money $money |
||
| 38 | * @param string $purchaseId |
||
| 39 | * @param string $bic |
||
| 40 | * @param string $iban |
||
| 41 | * @param string $name |
||
| 42 | * @param string $description |
||
| 43 | */ |
||
| 44 | 1 | public function __construct(Money $money, $purchaseId, $bic, $iban, $name, $description) |
|
| 53 | |||
| 54 | /** @inheritdoc */ |
||
| 55 | 1 | public function toArray() |
|
| 64 | } |
||
| 65 |
This check marks private properties in classes that are never used. Those properties can be removed.