2626/**
2727 * Console command to disable extensions
2828 *
29- * @since __DEPLOY_VERSION__
29+ * @since 6.1.0
3030 */
3131class ExtensionDisableCommand extends AbstractCommand
3232{
@@ -36,61 +36,61 @@ class ExtensionDisableCommand extends AbstractCommand
3636 * The default command name
3737 *
3838 * @var string
39- * @since __DEPLOY_VERSION__
39+ * @since 6.1.0
4040 */
4141 protected static $ defaultName = 'extension:disable ' ;
4242
4343 /**
4444 * @var InputInterface
45- * @since __DEPLOY_VERSION__
45+ * @since 6.1.0
4646 */
4747 private $ cliInput ;
4848
4949 /**
5050 * @var SymfonyStyle
51- * @since __DEPLOY_VERSION__
51+ * @since 6.1.0
5252 */
5353 private $ ioStyle ;
5454
5555 /**
5656 * Exit Code for extensions already enabled\disabled
57- * @since __DEPLOY_VERSION__
57+ * @since 6.1.0
5858 */
5959 public const DISABLE_NOCHANGE = 3 ;
6060
6161 /**
6262 * Exit Code for extensions enable\disable failure
63- * @since __DEPLOY_VERSION__
63+ * @since 6.1.0
6464 */
6565 public const DISABLE_FAILED = 1 ;
6666
6767 /**
6868 * Exit Code for disable parent template with child failure
69- * @since __DEPLOY_VERSION__
69+ * @since 6.1.0
7070 */
7171 public const DISABLE_WITHCHILD_NOT_PERMITTED = 5 ;
7272
7373 /**
7474 * Exit Code for disable home template failure
75- * @since __DEPLOY_VERSION__
75+ * @since 6.1.0
7676 */
7777 public const DISABLE_HOME_NOT_PERMITTED = 6 ;
7878
7979 /**
8080 * Exit Code for extensions protected enable\disable failure
81- * @since __DEPLOY_VERSION__
81+ * @since 6.1.0
8282 */
8383 public const DISABLE_PROTECTED = 4 ;
8484
8585 /**
8686 * Exit Code for extensions not found
87- * @since __DEPLOY_VERSION__
87+ * @since 6.1.0
8888 */
8989 public const DISABLE_NOT_FOUND = 2 ;
9090
9191 /**
9292 * Exit Code for extensions enable\disable success
93- * @since __DEPLOY_VERSION__
93+ * @since 6.1.0
9494 */
9595 public const DISABLE_SUCCESSFUL = 0 ;
9696
@@ -99,7 +99,7 @@ class ExtensionDisableCommand extends AbstractCommand
9999 *
100100 * @param DatabaseInterface $db The database
101101 *
102- * @since __DEPLOY_VERSION__
102+ * @since 6.1.0
103103 */
104104 public function __construct (DatabaseInterface $ db )
105105 {
@@ -116,7 +116,7 @@ public function __construct(DatabaseInterface $db)
116116 *
117117 * @return void
118118 *
119- * @since __DEPLOY_VERSION__
119+ * @since 6.1.0
120120 *
121121 */
122122 private function configureIO (InputInterface $ input , OutputInterface $ output ): void
@@ -130,7 +130,7 @@ private function configureIO(InputInterface $input, OutputInterface $output): vo
130130 *
131131 * @return void
132132 *
133- * @since __DEPLOY_VERSION__
133+ * @since 6.1.0
134134 */
135135 protected function configure (): void
136136 {
@@ -157,7 +157,7 @@ protected function configure(): void
157157 *
158158 * @return integer The command exit code
159159 *
160- * @since __DEPLOY_VERSION__
160+ * @since 6.1.0
161161 */
162162 protected function doExecute (InputInterface $ input , OutputInterface $ output ): int
163163 {
0 commit comments