Skip to content

Commit 2f726ef

Browse files
committed
minor symfony#14037 CS: Ensure there is no code on the same line as the PHP open tag and it is followed by a blankline (keradus)
This PR was merged into the 2.3 branch. Discussion ---------- CS: Ensure there is no code on the same line as the PHP open tag and it is followed by a blankline | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | ? | Fixed tickets | N/A | License | MIT | Doc PR | N/A Changes generated automatically by upcoming PHP CS Fixer. To keep fabbot.io happy ;) Commits ------- 6a16d91 CS: Ensure there is no code on the same line as the PHP open tag and it is followed by a blankline
2 parents 86e9b94 + 6a16d91 commit 2f726ef

File tree

8 files changed

+13
-1
lines changed

8 files changed

+13
-1
lines changed

.php_cs

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?php
2+
3+
return Symfony\CS\Config\Config::create()
4+
->setUsingLinter(false)
5+
->setUsingCache(true)
6+
;

src/Symfony/Bridge/Propel1/Form/EventListener/TranslationCollectionFormListener.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* This file is part of the Symfony package.
45
*

src/Symfony/Bridge/Propel1/Form/EventListener/TranslationFormListener.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* This file is part of the Symfony package.
45
*

src/Symfony/Bundle/FrameworkBundle/Translation/PhpStringTokenParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static function parse($str)
7777
if ('\'' === $str[$bLength]) {
7878
return str_replace(
7979
array('\\\\', '\\\''),
80-
array( '\\', '\''),
80+
array('\\', '\''),
8181
substr($str, $bLength + 1, -1)
8282
);
8383
} else {

src/Symfony/Component/Form/FormEvents.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* This file is part of the Symfony package.
45
*

src/Symfony/Component/HttpKernel/Profiler/FileProfilerStorage.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* This file is part of the Symfony package.
45
*

src/Symfony/Component/Security/Acl/Domain/Acl.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* This file is part of the Symfony package.
45
*

src/Symfony/Component/Security/Http/RememberMe/RememberMeServicesInterface.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace Symfony\Component\Security\Http\RememberMe;
34

45
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;

0 commit comments

Comments
 (0)