Skip to content

Commit 516d974

Browse files
authored
Fix #14
1 parent 30e7c96 commit 516d974

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Setup/InstallData.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,17 @@
99

1010
class InstallData implements InstallDataInterface
1111
{
12+
13+
/**
14+
* @var CategorySetupFactory
15+
*/
16+
private $categorySetupFactory;
17+
1218
public function __construct(CategorySetupFactory $categorySetupFactory)
1319
{
1420
$this->categorySetupFactory = $categorySetupFactory;
1521
}
22+
1623
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
1724
{
1825
$installer = $setup;
@@ -37,4 +44,5 @@ public function install(ModuleDataSetupInterface $setup, ModuleContextInterface
3744
);
3845
$installer->endSetup();
3946
}
40-
}
47+
48+
}

0 commit comments

Comments
 (0)