Skip to content

Commit 21afb4c

Browse files
committed
minor symfony#4445 Removed unnecessary use statement (Alex Salguero)
This PR was merged into the 2.3 branch. Discussion ---------- Removed unnecessary use statement | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | Found a rather unnecessary "use" statement in the code example in the "debugging" cookbook. Makes it difficult to spot the changes between one code example and the following one and know what changed. Commits ------- 6a9162b Removed unnecessary use statement in code example in the debugging cookbook
2 parents 85bf906 + 6a9162b commit 21afb4c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cookbook/debugging.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ below::
4747
$loader = require_once __DIR__.'/../app/autoload.php';
4848
require_once __DIR__.'/../app/AppKernel.php';
4949

50-
use Symfony\Component\HttpFoundation\Request;
51-
5250
$kernel = new AppKernel('dev', true);
5351
// $kernel->loadClassCache();
5452
$request = Request::createFromGlobals();

0 commit comments

Comments
 (0)