You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: doc/book/controllers.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -279,10 +279,11 @@ extending class.
279
279
280
280
## AbstractConsoleController
281
281
282
-
> [zend-mvc-console](https://docs.zendframework.com/zend-mvc-console/)is a component that required to use it. We can install via composer command:
283
-
> ```bash
282
+
> For version 3, the integration component [zend-mvc-console](https://docs.zendframework.com/zend-mvc-console/)must be installed. It can be done via Composer:
283
+
> ````bash
284
284
> composer require zendframework/zend-mvc-console
285
285
>```
286
+
> If you are not using the component installer, you will need to [add this component as a module](https://docs.zendframework.com/zend-mvc-console/intro/#manual-installation).
286
287
287
288
`Zend\Mvc\Console\Controller\AbstractConsoleController` extends from [AbstractActionController](#abstractactioncontroller)
Copy file name to clipboardExpand all lines: doc/book/quick-start.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,10 +113,12 @@ classes for you to start with:
113
113
`AbstractActionController`, but provides methods for retrieving the
114
114
`Zend\Console\Adapter\AdapterInterface` instance, and ensuring that execution
115
115
fails in non-console environments.
116
-
> [zend-mvc-console](https://docs.zendframework.com/zend-mvc-console/) is a component that required to use it. We can install via composer command:
117
-
> ```bash
116
+
117
+
> For version 3, the integration component [zend-mvc-console](https://docs.zendframework.com/zend-mvc-console/) must be installed. It can be done via Composer:
118
+
> ````bash
118
119
> composer require zendframework/zend-mvc-console
119
120
>```
121
+
> If you are not using the component installer, you will need to [add this component as a module](https://docs.zendframework.com/zend-mvc-console/intro/#manual-installation).
120
122
121
123
To get started, we'll create a "hello world"-style controller, with a single
122
124
action. First, create the file `HelloController.php` in the directory
0 commit comments