Skip to content

Commit

Permalink
EWPP-1165: Adjust indentation for option name description and improve…
Browse files Browse the repository at this point in the history
… code comments.
  • Loading branch information
sergepavle committed Jul 29, 2021
1 parent 9946ae4 commit 7617adc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 20 deletions.
4 changes: 4 additions & 0 deletions config/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ drupal:
# Setting this to "false" will run "site-install" without the "--db-url" parameter.
# This is useful if the database settings are already set in your settings.php file.
generate_db_url: true
# By setting this to NULL, will disable the update status module option
# (install_configure_form.enable_update_status_module) during "site-install" execution. By default is TRUE.
update_status_module: "true"
# By setting this to NULL, will disable the update status emails option
# (install_configure_form.enable_update_status_emails) during "site-install" execution. By default is TRUE.
update_status_emails: "true"

# Administrator account information.
Expand Down
40 changes: 20 additions & 20 deletions src/Commands/AbstractDrupalCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,26 +113,26 @@ public function validateSiteInstall(CommandData $commandData)
*
* @command drupal:site-install
*
* @option root Drupal root.
* @option site-name Site name.
* @option site-mail Site mail.
* @option site-profile Installation profile
* @option site-update Whereas to enable the update module or not.
* @option site-locale Default site locale.
* @option account-name Admin account name.
* @option account-password Admin account password.
* @option account-mail Admin email.
* @option database-type Deprecated, use "database-scheme"
* @option database-scheme Database scheme.
* @option database-host Database host.
* @option database-port Database port.
* @option database-name Database name.
* @option database-user Database username.
* @option database-password Database password.
* @option sites-subdir Sites sub-directory.
* @option config-dir Deprecated, use "existing-config" for Drupal 8.6 and higher.
* @option existing-config Whether existing config should be imported during installation.
* @option skip-permissions-setup Whether to skip making the settings file and folder writable during installation.
* @option root Drupal root.
* @option site-name Site name.
* @option site-mail Site mail.
* @option site-profile Installation profile
* @option site-update Whereas to enable the update module or not.
* @option site-locale Default site locale.
* @option account-name Admin account name.
* @option account-password Admin account password.
* @option account-mail Admin email.
* @option database-type Deprecated, use "database-scheme"
* @option database-scheme Database scheme.
* @option database-host Database host.
* @option database-port Database port.
* @option database-name Database name.
* @option database-user Database username.
* @option database-password Database password.
* @option sites-subdir Sites sub-directory.
* @option config-dir Deprecated, use "existing-config" for Drupal 8.6 and higher.
* @option existing-config Whether existing config should be imported during installation.
* @option skip-permissions-setup Whether to skip making the settings file and folder writable during installation.
* @option enable-update-status-module Check for updates automatically.
* @option enable-update-status-emails Receive email notifications regarding updates.
*
Expand Down

0 comments on commit 7617adc

Please sign in to comment.