Skip to content

Commit 1ddc3d8

Browse files
committed
Merge branch '2.0' into 2.1
2 parents da4a62a + 4ebb269 commit 1ddc3d8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

book/http_fundamentals.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,9 +357,9 @@ Almost all modern web apps do this - including apps like WordPress.
357357
Stay Organized
358358
~~~~~~~~~~~~~~
359359

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
363363
on that value. This can get ugly quickly::
364364

365365
// index.php

contributing/code/standards.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ Naming Conventions
108108

109109
* Use namespaces for all classes;
110110

111+
* Abstract classes are often prefixed with `Abstract`;
112+
111113
* Suffix interfaces with `Interface`;
112114

113115
* Use alphanumeric characters and underscores for file names;

0 commit comments

Comments
 (0)