Skip to content

Commit

Permalink
minor #14037 CS: Ensure there is no code on the same line as the PHP …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
fabpot committed Mar 24, 2015
2 parents 86e9b94 + 6a16d91 commit 2f726ef
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

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

/*
* This file is part of the Symfony package.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* This file is part of the Symfony package.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static function parse($str)
if ('\'' === $str[$bLength]) {
return str_replace(
array('\\\\', '\\\''),
array( '\\', '\''),
array('\\', '\''),
substr($str, $bLength + 1, -1)
);
} else {
Expand Down
1 change: 1 addition & 0 deletions src/Symfony/Component/Form/FormEvents.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* This file is part of the Symfony package.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* This file is part of the Symfony package.
*
Expand Down
1 change: 1 addition & 0 deletions src/Symfony/Component/Security/Acl/Domain/Acl.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/*
* This file is part of the Symfony package.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace Symfony\Component\Security\Http\RememberMe;

use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
Expand Down

0 comments on commit 2f726ef

Please sign in to comment.