Skip to content

Commit b6507c8

Browse files
committed
fixed CS
1 parent 2ff6f44 commit b6507c8

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.php_cs.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ return PhpCsFixer\Config::create()
88
'no_unreachable_default_argument_value' => false,
99
'braces' => array('allow_single_line_closure' => true),
1010
'heredoc_to_nowdoc' => false,
11+
'phpdoc_annotation_without_dot' => false,
1112
))
1213
->setRiskyAllowed(true)
1314
->setFinder(

src/Symfony/Component/DependencyInjection/Compiler/CheckCircularReferencesPass.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ private function checkOutEdges(array $edges)
6060
$id = $node->getId();
6161

6262
if (empty($this->checkedNodes[$id])) {
63-
6463
// don't check circular dependencies for lazy services
6564
if (!$node->getValue() || !$node->getValue()->isLazy()) {
6665
$searchKey = array_search($id, $this->currentPath);

src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private function htmlEncode($s)
298298
{
299299
$html = '';
300300

301-
$dumper = new HtmlDumper(function ($line) use (&$html) {$html .= $line;}, $this->charset);
301+
$dumper = new HtmlDumper(function ($line) use (&$html) { $html .= $line; }, $this->charset);
302302
$dumper->setDumpHeader('');
303303
$dumper->setDumpBoundaries('', '');
304304

0 commit comments

Comments
 (0)