diff --git a/Setup/InstallData.php b/Setup/InstallData.php index 9bf98bd..aadc5de 100644 --- a/Setup/InstallData.php +++ b/Setup/InstallData.php @@ -9,10 +9,17 @@ class InstallData implements InstallDataInterface { + + /** + * @var CategorySetupFactory + */ + private $categorySetupFactory; + public function __construct(CategorySetupFactory $categorySetupFactory) { $this->categorySetupFactory = $categorySetupFactory; } + public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $installer = $setup; @@ -37,4 +44,5 @@ public function install(ModuleDataSetupInterface $setup, ModuleContextInterface ); $installer->endSetup(); } -} \ No newline at end of file + +}