Skip to content

Commit 95e5a6a

Browse files
committed
docs: change directory notation
1 parent 2cebaaf commit 95e5a6a

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

user_guide_src/source/concepts/mvc.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ the data storage.
2828

2929
At their most basic, controllers and models are simply classes that have a specific job. They are not the only class
3030
types that you can use, obviously, but they make up the core of how this framework is designed to be used. They even
31-
have designated directories in the **/app** directory for their storage, though you're free to store them
31+
have designated directories in the **app** directory for their storage, though you're free to store them
3232
wherever you desire, as long as they are properly namespaced. We will discuss that in more detail below.
3333

3434
Let's take a closer look at each of these three main components.

user_guide_src/source/concepts/structure.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ can change to meet the needs of your application.
1212
Default Directories
1313
*******************
1414

15-
A fresh install has five directories: ``/app``, ``/public``,
16-
``/writable``, ``/tests`` and ``/system`` or ``/vendor``.
15+
A fresh install has five directories: ``app/``, ``public/``,
16+
``writable/``, ``tests/`` and ``vendor/`` or ``system/``.
1717
Each of these directories has a very specific part to play.
1818

1919
app
@@ -24,17 +24,17 @@ structure that works well for many applications. The following folders make up t
2424

2525
.. code-block:: none
2626
27-
/app
28-
/Config Stores the configuration files
29-
/Controllers Controllers determine the program flow
30-
/Database Stores the database migrations and seeds files
31-
/Filters Stores filter classes that can run before and after controller
32-
/Helpers Helpers store collections of standalone functions
33-
/Language Multiple language support reads the language strings from here
34-
/Libraries Useful classes that don't fit in another category
35-
/Models Models work with the database to represent the business entities.
36-
/ThirdParty ThirdParty libraries that can be used in application
37-
/Views Views make up the HTML that is displayed to the client.
27+
app/
28+
Config/ Stores the configuration files
29+
Controllers/ Controllers determine the program flow
30+
Database/ Stores the database migrations and seeds files
31+
Filters/ Stores filter classes that can run before and after controller
32+
Helpers/ Helpers store collections of standalone functions
33+
Language/ Multiple language support reads the language strings from here
34+
Libraries/ Useful classes that don't fit in another category
35+
Models/ Models work with the database to represent the business entities
36+
ThirdParty/ ThirdParty libraries that can be used in application
37+
Views/ Views make up the HTML that is displayed to the client
3838
3939
Because the ``app`` directory is already namespaced, you should feel free to modify the structure
4040
of this directory to suit your application's needs. For example, you might decide to start using the Repository

0 commit comments

Comments
 (0)