Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class InstallSchema implements InstallSchemaInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var CommandScheduleTableManager |
||
14 | */ |
||
15 | private $commandScheduleTableManager; |
||
16 | |||
17 | /** |
||
18 | * @param CommandScheduleTableManager $commandScheduleTableManager |
||
19 | */ |
||
20 | public function __construct(CommandScheduleTableManager $commandScheduleTableManager) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Installs the market module database schema |
||
27 | * |
||
28 | * @param SchemaSetupInterface $setup |
||
29 | * @param ModuleContextInterface $context |
||
30 | */ |
||
31 | public function install(SchemaSetupInterface $setup, ModuleContextInterface $context) |
||
38 | } |
||
39 | } |