1 | <?php |
||
11 | abstract class AbstractVerifier |
||
12 | { |
||
13 | /** |
||
14 | * @var array |
||
15 | */ |
||
16 | protected $txnIds = []; |
||
17 | |||
18 | /** |
||
19 | * @var Client |
||
20 | */ |
||
21 | protected $config; |
||
22 | |||
23 | /** |
||
24 | * @param array $transaction_ids |
||
25 | * @param string $account |
||
26 | */ |
||
27 | public function __construct($transaction_ids, $account = null) |
||
33 | |||
34 | /** |
||
35 | * @param object $data |
||
36 | * @return PayuPayment |
||
37 | */ |
||
38 | protected function getInstance($data) |
||
49 | |||
50 | /** |
||
51 | * @return object |
||
52 | */ |
||
53 | abstract public function verify(); |
||
54 | } |
||
55 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..