Skip to content

Commit 2095736

Browse files
committed
minor #11197 use consistent placeholder comments in yaml, php and xml (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- use consistent placeholder comments in yaml, php and xml <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- bee4191 use consistent placeholder comments in yaml, php and xml
2 parents 6518bc0 + bee4191 commit 2095736

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

create_framework/http_kernel_httpkernelinterface.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ PHP; it implements ``HttpKernelInterface`` and wraps another
5555

5656
// example.com/web/front.php
5757

58-
// ..
58+
// ...
5959

6060
$framework = new Simplex\Framework($dispatcher, $matcher, $controllerResolver, $argumentResolver);
6161
$framework = new HttpKernel\HttpCache\HttpCache(

deployment/fortrabbit.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ Make sure this file is imported into the main config file:
126126
- { resource: config.yml }
127127
- { resource: config_prod_secrets.php }
128128
129-
# ..
129+
# ...
130130
framework:
131131
session:
132132
# set handler_id to null to use default session handler from php.ini (memcached)
133133
handler_id: ~
134-
# ..
134+
# ...
135135
136136
.. code-block:: xml
137137
@@ -148,9 +148,9 @@ Make sure this file is imported into the main config file:
148148
<import resource="config_prod_secrets.php"/>
149149
</imports>
150150
151-
<!-- .. -->
151+
<!-- ... -->
152152
<framework:config>
153-
<!-- .. -->
153+
<!-- ... -->
154154
<framework:session handler-id="null"/>
155155
</framework:config>
156156
</container>

routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ This happens when your controller method has an argument (e.g. ``$slug``)::
724724

725725
public function showAction($slug)
726726
{
727-
// ..
727+
// ...
728728
}
729729

730730
But your route path does *not* have a ``{slug}`` wildcard (e.g. it is ``/blog/show``).

security/api_key_authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ configuration or set it to ``false``:
457457
458458
// app/config/security.php
459459
460-
// ..
460+
// ...
461461
$container->loadFromExtension('security', [
462462
'firewalls' => [
463463
'secured_area' => [

security/guard_authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ Finally, configure your ``firewalls`` key in ``security.yml`` to use this authen
322322
323323
// app/config/security.php
324324
325-
// ..
325+
// ...
326326
use AppBundle\Security\TokenAuthenticator;
327327
328328
$container->loadFromExtension('security', [

0 commit comments

Comments
 (0)