File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ Controllers are also called *actions*.
116116
117117This controller is pretty straightforward:
118118
119- * *line 4 *: Symfony takes advantage of PHP 5.3 namespace functionality to
119+ * *line 4 *: Symfony takes advantage of PHP's namespace functionality to
120120 namespace the entire controller class. The ``use `` keyword imports the
121121 ``Response `` class, which the controller must return.
122122
@@ -556,7 +556,7 @@ Symfony will automatically return a 500 HTTP response code.
556556 throw new \Exception('Something went wrong!');
557557
558558 In every case, an error page is shown to the end user and a full debug
559- error page is shown to the developer (i.e. when you're using ``app_dev.php `` -
559+ error page is shown to the developer (i.e. when you're using ``app_dev.php `` -
560560see :ref: `page-creation-environments `).
561561
562562You'll want to customize the error page your user sees. To do that, see the
Original file line number Diff line number Diff line change @@ -29,10 +29,9 @@ Bundle Name
2929-----------
3030
3131A bundle is also a PHP namespace. The namespace must follow the technical
32- interoperability `standards `_ for PHP 5.3 namespaces and class names: it
33- starts with a vendor segment, followed by zero or more category segments, and
34- it ends with the namespace short name, which must end with a ``Bundle ``
35- suffix.
32+ interoperability `standards `_ for PHP namespaces and class names: it starts
33+ with a vendor segment, followed by zero or more category segments, and it ends
34+ with the namespace short name, which must end with a ``Bundle `` suffix.
3635
3736A namespace becomes a bundle as soon as you add a bundle class to it. The
3837bundle class name must follow these simple rules:
Original file line number Diff line number Diff line change 44How to Use Monolog to Write Logs
55================================
66
7- Monolog _ is a logging library for PHP 5.3 used by Symfony. It is
8- inspired by the Python LogBook library.
7+ Monolog _ is a logging library for PHP used by Symfony. It is inspired by the
8+ Python LogBook library.
99
1010Usage
1111-----
You can’t perform that action at this time.
0 commit comments