File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -357,9 +357,9 @@ Almost all modern web apps do this - including apps like WordPress.
357
357
Stay Organized
358
358
~~~~~~~~~~~~~~
359
359
360
- But inside your front controller, how do you know which page should
361
- be rendered and how can you render each in a sane way? One way or another , you'll need to
362
- check the incoming URI and execute different parts of your code depending
360
+ Inside your front controller, you have to figure out which code should be
361
+ executed and what the content to return should be. To figure this out , you'll
362
+ need to check the incoming URI and execute different parts of your code depending
363
363
on that value. This can get ugly quickly::
364
364
365
365
// index.php
Original file line number Diff line number Diff line change @@ -108,6 +108,8 @@ Naming Conventions
108
108
109
109
* Use namespaces for all classes;
110
110
111
+ * Abstract classes are often prefixed with `Abstract `;
112
+
111
113
* Suffix interfaces with `Interface `;
112
114
113
115
* Use alphanumeric characters and underscores for file names;
You can’t perform that action at this time.
0 commit comments