Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Astound\Affirm\Gateway\Validator\Client\PaymentActionsValidator…
…Void class. (#132) Problem of class was simple: constructor, used there never called parent's constructor, so Depenedcy Injections of parent constructor was ingored. This lead to `$this->createResult(...` at 71 line, causing error, because it calls parent's `createResult` from `Magento\Payment\Gateway\Validator\AbstractValidator`, and it uses `$this->resultInterfaceFactory`, which is unexpeted null, because parent constuctor never set up this value, because of parent::__construc() was never called, and DI's values wass never passed there. Co-authored-by: artur vinogradov <[email protected]>
- Loading branch information