Skip to content

Commit 7cfcda8

Browse files
author
rotimi
committed
Documentation updates
1 parent 9c3b41e commit 7cfcda8

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

documentation/MOVIE_CATALOG_APP_WALK_THROUGH.md

-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ the commands below:
9898
./vendor/bin/smvc-create-controller -c users -p "./src" -n "MovieCatalog\Controllers" -e "\MovieCatalog\Controllers\MovieCatalogBase"
9999
100100
./vendor/bin/smvc-create-controller -c movie-listings -p "./src" -n "MovieCatalog\Controllers" -e "\MovieCatalog\Controllers\MovieCatalogBase"
101-
102-
composer dumpautoload -o
103101
```
104102

105103
We should now have the following files and folders in our app:

documentation/QUICKSTART.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@
8888
- Customize **./config/app-settings.php**, **./config/dependencies.php**, **./config/env.php**, **./config/ini-settings.php** and optionally **./config/routes-and-middlewares.php** to suit your needs.
8989

9090
- Start creating controllers for your application using **./vendor/bin/smvc-create-controller-wizard**
91-
> It is recommended that you first create a base controller for your application, which will contain all the logic that will be common to all your application's other controllers. The other controllers should extend your application's base controller.
91+
92+
> It is recommended that you first create a base controller for your application, which will contain all the logic that will be common to all your application's other controllers. The other controllers should extend your application's base controller.
9293
93-
> Make sure you add the namespace for your apps controller classes to the array referenced by **$container[\SlimMvcTools\ContainerKeys::NAMESPACES_4_CONTROLLERS]** in **./config/dependencies.php**
94+
> Make sure you add the namespace for your apps controller classes to the array referenced by **$container[\SlimMvcTools\ContainerKeys::NAMESPACES_4_CONTROLLERS]** in **./config/dependencies.php**
9495
95-
> Always run **composer dump** after each time your create a new controller class with **./vendor/bin/smvc-create-controller** or **./vendor/bin/smvc-create-controller-wizard**.
9696

9797
## Key Directories and Configuration
9898
* **`config`:** Contains files for configuring the application

0 commit comments

Comments
 (0)