Skip to content

CS fixes #3016

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 9, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/dependency_injection/definitions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To get an array of the constructor arguments for a definition you can use::
or to get a single argument by its position::

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

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

Expand Down
4 changes: 2 additions & 2 deletions components/filesystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ Rename
:method:`Symfony\\Component\\Filesystem\\Filesystem::rename` is used to rename
files and directories::

//rename a file
// rename a file
$fs->rename('/tmp/processed_video.ogg', '/path/to/store/video_647.ogg');
//rename a directory
// rename a directory
$fs->rename('/tmp/files', '/path/to/store/files');

symlink
Expand Down
4 changes: 2 additions & 2 deletions cookbook/configuration/apache_router.rst
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ to ``ApacheRequest`` in ``web/app.php``::

require_once __DIR__.'/../app/bootstrap.php.cache';
require_once __DIR__.'/../app/AppKernel.php';
//require_once __DIR__.'/../app/AppCache.php';
// require_once __DIR__.'/../app/AppCache.php';

use Symfony\Component\HttpFoundation\ApacheRequest;

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