File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ To get an array of the constructor arguments for a definition you can use::
66
66
or to get a single argument by its position::
67
67
68
68
$definition->getArgument($index);
69
- //e.g. $definition->getArgument(0) for the first argument
69
+ // e.g. $definition->getArgument(0) for the first argument
70
70
71
71
You can add a new argument to the end of the arguments array using::
72
72
Original file line number Diff line number Diff line change @@ -178,9 +178,9 @@ Rename
178
178
:method: `Symfony\\ Component\\ Filesystem\\ Filesystem::rename ` is used to rename
179
179
files and directories::
180
180
181
- //rename a file
181
+ // rename a file
182
182
$fs->rename('/tmp/processed_video.ogg', '/path/to/store/video_647.ogg');
183
- //rename a directory
183
+ // rename a directory
184
184
$fs->rename('/tmp/files', '/path/to/store/files');
185
185
186
186
symlink
Original file line number Diff line number Diff line change @@ -129,11 +129,11 @@ to ``ApacheRequest`` in ``web/app.php``::
129
129
130
130
require_once __DIR__.'/../app/bootstrap.php.cache';
131
131
require_once __DIR__.'/../app/AppKernel.php';
132
- //require_once __DIR__.'/../app/AppCache.php';
132
+ // require_once __DIR__.'/../app/AppCache.php';
133
133
134
134
use Symfony\Component\HttpFoundation\ApacheRequest;
135
135
136
136
$kernel = new AppKernel('prod', false);
137
137
$kernel->loadClassCache();
138
- //$kernel = new AppCache($kernel);
138
+ // $kernel = new AppCache($kernel);
139
139
$kernel->handle(ApacheRequest::createFromGlobals())->send();
You can’t perform that action at this time.
0 commit comments