@@ -33,61 +33,61 @@ class InstallCommand extends AbstractSetupCommand
33
33
/**
34
34
* Parameter indicating command whether to cleanup database in the install routine
35
35
*/
36
- const INPUT_KEY_CLEANUP_DB = 'cleanup-database ' ;
36
+ public const INPUT_KEY_CLEANUP_DB = 'cleanup-database ' ;
37
37
38
38
/**
39
39
* Parameter to specify an order_increment_prefix
40
40
*/
41
- const INPUT_KEY_SALES_ORDER_INCREMENT_PREFIX = 'sales-order-increment-prefix ' ;
41
+ public const INPUT_KEY_SALES_ORDER_INCREMENT_PREFIX = 'sales-order-increment-prefix ' ;
42
42
43
43
/**
44
44
* Parameter indicating command whether to install Sample Data
45
45
*/
46
- const INPUT_KEY_USE_SAMPLE_DATA = 'use-sample-data ' ;
46
+ public const INPUT_KEY_USE_SAMPLE_DATA = 'use-sample-data ' ;
47
47
48
48
/**
49
49
* List of comma-separated module names. That must be enabled during installation.
50
50
* Available magic param all.
51
51
*/
52
- const INPUT_KEY_ENABLE_MODULES = 'enable-modules ' ;
52
+ public const INPUT_KEY_ENABLE_MODULES = 'enable-modules ' ;
53
53
54
54
/**
55
55
* List of comma-separated module names. That must be avoided during installation.
56
56
* List of comma-separated module names. That must be avoided during installation.
57
57
* Available magic param all.
58
58
*/
59
- const INPUT_KEY_DISABLE_MODULES = 'disable-modules ' ;
59
+ public const INPUT_KEY_DISABLE_MODULES = 'disable-modules ' ;
60
60
61
61
/**
62
62
* If this flag is enabled, than all your old scripts with format:
63
63
* InstallSchema, UpgradeSchema will be converted to new db_schema.xml format.
64
64
*/
65
- const CONVERT_OLD_SCRIPTS_KEY = 'convert-old-scripts ' ;
65
+ public const CONVERT_OLD_SCRIPTS_KEY = 'convert-old-scripts ' ;
66
66
67
67
/**
68
68
* Parameter indicating command for interactive setup
69
69
*/
70
- const INPUT_KEY_INTERACTIVE_SETUP = 'interactive ' ;
70
+ public const INPUT_KEY_INTERACTIVE_SETUP = 'interactive ' ;
71
71
72
72
/**
73
73
* Parameter indicating command shortcut for interactive setup
74
74
*/
75
- const INPUT_KEY_INTERACTIVE_SETUP_SHORTCUT = 'i ' ;
75
+ public const INPUT_KEY_INTERACTIVE_SETUP_SHORTCUT = 'i ' ;
76
76
77
77
/**
78
78
* Parameter says that in this mode all destructive operations, like column removal will be dumped
79
79
*/
80
- const INPUT_KEY_SAFE_INSTALLER_MODE = 'safe-mode ' ;
80
+ public const INPUT_KEY_SAFE_INSTALLER_MODE = 'safe-mode ' ;
81
81
82
82
/**
83
83
* Parameter allows to restore data, that was dumped with safe mode before
84
84
*/
85
- const INPUT_KEY_DATA_RESTORE = 'data-restore ' ;
85
+ public const INPUT_KEY_DATA_RESTORE = 'data-restore ' ;
86
86
87
87
/**
88
88
* Regex for sales_order_increment_prefix validation.
89
89
*/
90
- const SALES_ORDER_INCREMENT_PREFIX_RULE = '/^.{0,20}$/ ' ;
90
+ public const SALES_ORDER_INCREMENT_PREFIX_RULE = '/^.{0,20}$/ ' ;
91
91
92
92
/**
93
93
* Installer service factory
0 commit comments