Skip to content

Commit 13e9f31

Browse files
committed
Tweaks
1 parent a17bdd6 commit 13e9f31

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

bundles.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ between all Symfony bundles. It follows a set of conventions, but is flexible
8484
to be adjusted if needed:
8585

8686
``Controller/``
87-
Contains the controllers of the bundle (e.g. ``RandomController.php``).
87+
the controllers of the bundle (e.g. ``RandomController.php``).
8888

8989
``DependencyInjection/``
9090
Holds certain Dependency Injection Extension classes, which may import service
@@ -98,9 +98,9 @@ to be adjusted if needed:
9898
Holds templates organized by controller name (e.g. ``Random/index.html.twig``).
9999

100100
``Resources/public/``
101-
Contains web assets (images, stylesheets, etc) and is copied or symbolically
102-
linked into the project ``public/`` directory via the ``assets:install`` console
103-
command.
101+
Contains web assets (images, compiled CSS nad JavaScript files, etc.) and is
102+
copied or symbolically linked into the project ``public/`` directory via the
103+
``assets:install`` console command.
104104

105105
``Tests/``
106106
Holds all tests for the bundle.

bundles/best_practices.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ Doctrine ORM entities ``src/Entity/``
122122
Doctrine ODM documents ``src/Document/``
123123
Event Listeners ``src/EventListener/``
124124
Configuration (routes, services, etc.) ``config/``
125-
Web Assets (CSS, JS, images) ``public/``
126-
Web Assets not meant to be publicly available ``assets/``
125+
Web Assets (compiled CSS and JS, images) ``public/``
126+
Web Asset sources (``.scss``, ``.ts``, Stimulus) ``assets/``
127127
Translation files ``translations/``
128128
Validation (when not using annotations) ``config/validation/``
129129
Serialization (when not using annotations) ``config/serialization/``

0 commit comments

Comments
 (0)