Skip to content

Commit 7d1f954

Browse files
committed
Merge pull request #3155 from bicpi/fix_missing_literal_formatting
[Reference][Requirements] Fix missing literal formatting
2 parents a012d42 + 7cbcf20 commit 7d1f954

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

book/performance.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ to ensure that the cache is cleared whenever any source files change. Otherwise,
3737
the updates you've made won't be seen.
3838

3939
For example, to disable these checks in APC, simply add ``apc.stat=0`` to
40-
your php.ini configuration.
40+
your ``php.ini`` configuration.
4141

4242
.. index::
4343
single: Performance; Autoloader

components/http_foundation/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ represented by a PHP callable instead of a string::
415415
.. note::
416416

417417
The ``flush()`` function does not flush buffering. If ``ob_start()`` has
418-
been called before or the ``output_buffering`` php.ini option is enabled,
418+
been called before or the ``output_buffering`` ``php.ini`` option is enabled,
419419
you must call ``ob_flush()`` before ``flush()``.
420420

421421
Additionally, PHP isn't the only layer that can buffer output. Your web

components/http_foundation/session_configuration.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ So-called 'native' handlers, are save handlers which are either compiled into
2626
PHP or provided by PHP extensions, such as PHP-Sqlite, PHP-Memcached and so on.
2727

2828
All native save handlers are internal to PHP and as such, have no public facing API.
29-
They must be configured by PHP ini directives, usually ``session.save_path`` and
29+
They must be configured by ``php.ini`` directives, usually ``session.save_path`` and
3030
potentially other driver specific directives. Specific details can be found in
3131
docblock of the ``setOptions()`` method of each class.
3232

@@ -87,7 +87,7 @@ Configuring PHP Sessions
8787
~~~~~~~~~~~~~~~~~~~~~~~~
8888

8989
The :class:`Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage`
90-
can configure most of the PHP ini configuration directives which are documented
90+
can configure most of the ``php.ini`` configuration directives which are documented
9191
at `php.net/session.configuration`_.
9292

9393
To configure these settings, pass the keys (omitting the initial ``session.`` part
@@ -131,7 +131,7 @@ example if these were set to ``5/100`` respectively, it would mean a probability
131131
of 5%. Similarly, ``3/4`` would mean a 3 in 4 chance of being called, i.e. 75%.
132132

133133
If the garbage collection handler is invoked, PHP will pass the value stored in
134-
the PHP ini directive ``session.gc_maxlifetime``. The meaning in this context is
134+
the ``php.ini`` directive ``session.gc_maxlifetime``. The meaning in this context is
135135
that any stored session that was saved more than ``maxlifetime`` ago should be
136136
deleted. This allows one to expire records based on idle time.
137137

components/http_foundation/sessions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Quick example::
5050

5151
.. caution::
5252

53-
Symfony sessions are incompatible with PHP ini directive ``session.auto_start = 1``
53+
Symfony sessions are incompatible with ``php.ini`` directive ``session.auto_start = 1``
5454
This directive should be turned off in ``php.ini``, in the webserver directives or
5555
in ``.htaccess``.
5656

cookbook/form/form_collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ great, your user can't actually add any new tags yet.
258258
This directive limits recursion to 100 calls which may not be enough for
259259
rendering the form in the template if you render the whole form at
260260
once (e.g ``form_widget(form)``). To fix this you can set this directive
261-
to a higher value (either via a PHP ini file or via :phpfunction:`ini_set`,
261+
to a higher value (either via a ``php.ini`` file or via :phpfunction:`ini_set`,
262262
for example in ``app/autoload.php``) or render each form field by hand
263263
using ``form_row``.
264264

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ full TextMate string would look like this:
7979
8080
Of course, since every developer uses a different IDE, it's better to set
8181
this on a system level. This can be done by setting the ``xdebug.file_link_format``
82-
PHP.ini value to the file link string. If this configuration value is set, then
82+
``php.ini`` value to the file link string. If this configuration value is set, then
8383
the ``ide`` option does not need to be specified.
8484

8585
.. _reference-framework-test:

reference/constraints/File.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ uploadIniSizeErrorMessage
217217
**type**: ``string`` **default**: ``The file is too large. Allowed maximum size is {{ limit }}``
218218

219219
The message that is displayed if the uploaded file is larger than the ``upload_max_filesize``
220-
PHP.ini setting.
220+
``php.ini`` setting.
221221

222222
uploadFormSizeErrorMessage
223223
~~~~~~~~~~~~~~~~~~~~~~~~~~

reference/requirements.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Required
2222
* PHP needs to be a minimum version of PHP 5.3.3
2323
* JSON needs to be enabled
2424
* ctype needs to be enabled
25-
* Your PHP.ini needs to have the date.timezone setting
25+
* Your ``php.ini`` needs to have the ``date.timezone`` setting
2626

2727
Optional
2828
--------
@@ -35,7 +35,7 @@ Optional
3535
* POSIX needs to be enabled (only on \*nix)
3636
* Intl needs to be installed with ICU 4+
3737
* APC 3.0.17+ (or another opcode cache needs to be installed)
38-
* PHP.ini recommended settings
38+
* ``php.ini`` recommended settings
3939

4040
* ``short_open_tag = Off``
4141
* ``magic_quotes_gpc = Off``

0 commit comments

Comments
 (0)