| 1 | <?php |
||
| 15 | class NotificationRequest extends AbstractIncomingRequest |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | * @throws \Omnipay\Common\Exception\InvalidRequestException |
||
| 20 | */ |
||
| 21 | public function getData(): array |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function sendData($data): IncomingResponse |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | protected function getIncomingParameters(): array |
||
| 51 | } |
||
| 52 |
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.