Skip to content

Commit f6372ec

Browse files
committed
EWPP-1165: Adjust indentation for option name description and improve code comments.
1 parent 9946ae4 commit f6372ec

File tree

2 files changed

+24
-20
lines changed

2 files changed

+24
-20
lines changed

config/runner.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ drupal:
4040
# Setting this to "false" will run "site-install" without the "--db-url" parameter.
4141
# This is useful if the database settings are already set in your settings.php file.
4242
generate_db_url: true
43+
# By settings this to NULL we will disable update status module option
44+
# (install_configure_form.enable_update_status_module) during "site-install" execution. By default is TRUE.
4345
update_status_module: "true"
46+
# By settings this to NULL we will disable update status emails option
47+
# (install_configure_form.enable_update_status_emails) during "site-install" execution. By default is TRUE.
4448
update_status_emails: "true"
4549

4650
# Administrator account information.

src/Commands/AbstractDrupalCommands.php

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -113,26 +113,26 @@ public function validateSiteInstall(CommandData $commandData)
113113
*
114114
* @command drupal:site-install
115115
*
116-
* @option root Drupal root.
117-
* @option site-name Site name.
118-
* @option site-mail Site mail.
119-
* @option site-profile Installation profile
120-
* @option site-update Whereas to enable the update module or not.
121-
* @option site-locale Default site locale.
122-
* @option account-name Admin account name.
123-
* @option account-password Admin account password.
124-
* @option account-mail Admin email.
125-
* @option database-type Deprecated, use "database-scheme"
126-
* @option database-scheme Database scheme.
127-
* @option database-host Database host.
128-
* @option database-port Database port.
129-
* @option database-name Database name.
130-
* @option database-user Database username.
131-
* @option database-password Database password.
132-
* @option sites-subdir Sites sub-directory.
133-
* @option config-dir Deprecated, use "existing-config" for Drupal 8.6 and higher.
134-
* @option existing-config Whether existing config should be imported during installation.
135-
* @option skip-permissions-setup Whether to skip making the settings file and folder writable during installation.
116+
* @option root Drupal root.
117+
* @option site-name Site name.
118+
* @option site-mail Site mail.
119+
* @option site-profile Installation profile
120+
* @option site-update Whereas to enable the update module or not.
121+
* @option site-locale Default site locale.
122+
* @option account-name Admin account name.
123+
* @option account-password Admin account password.
124+
* @option account-mail Admin email.
125+
* @option database-type Deprecated, use "database-scheme"
126+
* @option database-scheme Database scheme.
127+
* @option database-host Database host.
128+
* @option database-port Database port.
129+
* @option database-name Database name.
130+
* @option database-user Database username.
131+
* @option database-password Database password.
132+
* @option sites-subdir Sites sub-directory.
133+
* @option config-dir Deprecated, use "existing-config" for Drupal 8.6 and higher.
134+
* @option existing-config Whether existing config should be imported during installation.
135+
* @option skip-permissions-setup Whether to skip making the settings file and folder writable during installation.
136136
* @option enable-update-status-module Check for updates automatically.
137137
* @option enable-update-status-emails Receive email notifications regarding updates.
138138
*

0 commit comments

Comments
 (0)