Skip to content

Commit 89a5728

Browse files
authored
#20895: added missing closing bracket
1 parent 811a7bf commit 89a5728

File tree

1 file changed

+3
-2
lines changed
  • app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote

1 file changed

+3
-2
lines changed

app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
use Magento\Framework\App\Action\HttpPostActionInterface;
1010
use Magento\Framework\Stdlib\DateTime\TimezoneInterface;
11-
use \Magento\Framework\App\Request\DataPersistorInterface;
11+
use Magento\Framework\App\Request\DataPersistorInterface;
1212

1313
/**
1414
* SalesRule save controller
@@ -48,7 +48,8 @@ public function __construct(
4848
TimezoneInterface::class
4949
);
5050
$this->dataPersistor = $dataPersistor ?? \Magento\Framework\App\ObjectManager::getInstance()->get(
51-
DataPersistorInterface::class;
51+
DataPersistorInterface::class
52+
);
5253
}
5354

5455
/**

0 commit comments

Comments
 (0)