From d2b2aa948b5052323a0966ca36d0eea474aaa11d Mon Sep 17 00:00:00 2001 From: Abrar Pathan Date: Wed, 29 May 2019 10:19:12 +0530 Subject: [PATCH] Update install-components.md --- guides/v2.2/cloud/howtos/install-components.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guides/v2.2/cloud/howtos/install-components.md b/guides/v2.2/cloud/howtos/install-components.md index 71ccd653648..4d2477e0d31 100644 --- a/guides/v2.2/cloud/howtos/install-components.md +++ b/guides/v2.2/cloud/howtos/install-components.md @@ -99,7 +99,7 @@ To verify the extension installed properly, you can check its functionality in t 1. List all enabled modules: ```bash - php bin/magento module:status + bin/magento module:status ``` 1. Verify the extension is listed. @@ -121,25 +121,25 @@ Trying to enable and disable extensions not following this method can lead to pe 1. List all module. ```bash - php bin/magento module:status + bin/magento module:status ``` 1. Enable a module.This command updates the `config.php` file with the enabled status of the module. ```bash - php bin/magento module:enable + bin/magento module:enable ``` 1. Disable a module. This command updates the `config.php` file with the disable status of the module. ```bash - php bin/magento module:disable + bin/magento module:disable ``` 1. Verify the status of a module: ```bash - php bin/magento module:status + bin/magento module:status ``` 1. Push your updates to the Git branch.