File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
app/code/Magento/Catalog/Model/Product/Option Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 3
3
* Copyright © Magento, Inc. All rights reserved.
4
4
* See COPYING.txt for license details.
5
5
*/
6
+ declare (strict_types=1 );
7
+
6
8
namespace Magento \Catalog \Model \Product \Option ;
7
9
8
10
use Magento \Catalog \Api \ProductCustomOptionRepositoryInterface as OptionRepository ;
@@ -71,7 +73,7 @@ public function execute($entity, $arguments = [])
71
73
* @param bool $hasChangedSku
72
74
* @param string $newSku
73
75
*/
74
- private function processOptionsSaving ($ options , $ hasChangedSku , $ newSku )
76
+ private function processOptionsSaving (array $ options , bool $ hasChangedSku , string $ newSku )
75
77
{
76
78
foreach ($ options as $ option ) {
77
79
if ($ hasChangedSku && $ option ->hasData ('product_sku ' )) {
You can’t perform that action at this time.
0 commit comments