Skip to content

Commit

Permalink
Merge branch '2.6' into 2.7
Browse files Browse the repository at this point in the history
* 2.6:
  fixed CS
  fixed CS

Conflicts:
	src/Symfony/Component/Security/Http/Tests/Firewall/RememberMeListenerTest.php
  • Loading branch information
fabpot committed May 15, 2015
2 parents 08cd138 + d667b6a commit a645601
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
4 changes: 3 additions & 1 deletion Constraints/False.php
Expand Up @@ -21,4 +21,6 @@
*
* @deprecated since version 2.7, to be removed in 3.0. Use IsFalse instead.
*/
class False extends IsFalse {}
class False extends IsFalse
{
}
4 changes: 3 additions & 1 deletion Constraints/FalseValidator.php
Expand Up @@ -18,4 +18,6 @@
*
* @deprecated since version 2.7, to be removed in 3.0. Use IsFalseValidator instead.
*/
class FalseValidator extends IsFalseValidator {}
class FalseValidator extends IsFalseValidator
{
}
4 changes: 3 additions & 1 deletion Constraints/Null.php
Expand Up @@ -21,4 +21,6 @@
*
* @deprecated since version 2.7, to be removed in 3.0. Use IsNull instead.
*/
class Null extends IsNull {}
class Null extends IsNull
{
}
4 changes: 3 additions & 1 deletion Constraints/NullValidator.php
Expand Up @@ -18,4 +18,6 @@
*
* @deprecated since version 2.7, to be removed in 3.0. Use IsNullValidator instead.
*/
class NullValidator extends IsNullValidator {}
class NullValidator extends IsNullValidator
{
}
4 changes: 3 additions & 1 deletion Constraints/True.php
Expand Up @@ -21,4 +21,6 @@
*
* @deprecated since version 2.7, to be removed in 3.0. Use IsTrue instead.
*/
class True extends IsTrue {}
class True extends IsTrue
{
}
4 changes: 3 additions & 1 deletion Constraints/TrueValidator.php
Expand Up @@ -18,4 +18,6 @@
*
* @deprecated since version 2.7, to be removed in 3.0. Use IsTrueValidator instead.
*/
class TrueValidator extends IsTrueValidator {}
class TrueValidator extends IsTrueValidator
{
}

0 comments on commit a645601

Please sign in to comment.