Skip to content

Commit

Permalink
Merge pull request #79 from wkaminsk/hotfix/fix-for-creating-shipment
Browse files Browse the repository at this point in the history
TIS-682 Fixed missing declaration and DI
  • Loading branch information
mooseriskified authored Nov 22, 2023
2 parents 1aa894d + a84343c commit 8e7ddbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Model/Observer/ProcessSuccessfulPost.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ class ProcessSuccessfulPost implements ObserverInterface
* @var OrderApi
*/
private $orderApi;

/**
* @var Registry
*/
private $registry;

/**
Expand All @@ -32,6 +36,7 @@ public function __construct(
) {
$this->logger = $logger;
$this->orderApi = $orderApi;
$this->registry = $registry;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "riskified/magento2new",
"type": "magento2-module",
"description": "Riskified decider module for Magento 2",
"version": "1.12.17",
"version": "1.12.18",
"require": {
"php": ">=7.4",
"magento/framework": ">=100.1.0",
Expand Down

0 comments on commit 8e7ddbf

Please sign in to comment.