Skip to content

Commit 9fab10b

Browse files
committed
minor #4854 Removed no longer needed information about PHP 5.3 (WouterJ)
This PR was merged into the 2.3 branch. Discussion ---------- Removed no longer needed information about PHP 5.3 While merging, #4753, I thought we could remove these things completely from the docs, as PHP 5.3 and namespacing are quite common now. | Q | A | --- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | - Commits ------- b6636ae Removed no longer needed information about PHP 5.3
2 parents f5ff45e + b6636ae commit 9fab10b

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

book/controller.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Controllers are also called *actions*.
116116

117117
This 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

cookbook/bundles/best_practices.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ Bundle Name
2929
-----------
3030

3131
A 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

3736
A namespace becomes a bundle as soon as you add a bundle class to it. The
3837
bundle class name must follow these simple rules:

cookbook/logging/monolog.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
How 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

1010
Usage
1111
-----

0 commit comments

Comments
 (0)