Skip to content

Commit 22164fd

Browse files
committed
Merge pull request #3016 from peterkokot/patch-1
CS fixes
2 parents adb5c75 + b4dedd9 commit 22164fd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

components/dependency_injection/definitions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To get an array of the constructor arguments for a definition you can use::
6666
or to get a single argument by its position::
6767

6868
$definition->getArgument($index);
69-
//e.g. $definition->getArgument(0) for the first argument
69+
// e.g. $definition->getArgument(0) for the first argument
7070

7171
You can add a new argument to the end of the arguments array using::
7272

components/filesystem.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,9 @@ Rename
178178
:method:`Symfony\\Component\\Filesystem\\Filesystem::rename` is used to rename
179179
files and directories::
180180

181-
//rename a file
181+
// rename a file
182182
$fs->rename('/tmp/processed_video.ogg', '/path/to/store/video_647.ogg');
183-
//rename a directory
183+
// rename a directory
184184
$fs->rename('/tmp/files', '/path/to/store/files');
185185

186186
symlink

cookbook/configuration/apache_router.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ to ``ApacheRequest`` in ``web/app.php``::
129129

130130
require_once __DIR__.'/../app/bootstrap.php.cache';
131131
require_once __DIR__.'/../app/AppKernel.php';
132-
//require_once __DIR__.'/../app/AppCache.php';
132+
// require_once __DIR__.'/../app/AppCache.php';
133133

134134
use Symfony\Component\HttpFoundation\ApacheRequest;
135135

136136
$kernel = new AppKernel('prod', false);
137137
$kernel->loadClassCache();
138-
//$kernel = new AppCache($kernel);
138+
// $kernel = new AppCache($kernel);
139139
$kernel->handle(ApacheRequest::createFromGlobals())->send();

0 commit comments

Comments
 (0)