| 1 | <?php |
||
| 10 | class QRReferenceInformation implements RemittanceInformation |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var QRReference |
||
| 14 | */ |
||
| 15 | protected $reference; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string|null |
||
| 19 | */ |
||
| 20 | protected $additionalInformation; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param QRReference $reference |
||
| 24 | * @param string|null $additionalInformation |
||
| 25 | */ |
||
| 26 | 2 | public function __construct(QRReference $reference, $additionalInformation) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 2 | public function asDom(\DOMDocument $doc) |
|
| 59 | } |
||
| 60 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.