Merge branch '2.3' into 2.6

* 2.3:
  fixed CS
This commit is contained in:
Fabien Potencier 2015-05-15 15:45:20 +02:00
commit e83db434a2
7 changed files with 24 additions and 12 deletions

View File

@ -19,4 +19,6 @@ namespace Symfony\Component\Validator\Constraints;
*
* @api
*/
class False extends IsFalse {}
class False extends IsFalse
{
}

View File

@ -16,4 +16,6 @@ namespace Symfony\Component\Validator\Constraints;
*
* @api
*/
class FalseValidator extends IsFalseValidator {}
class FalseValidator extends IsFalseValidator
{
}

View File

@ -19,4 +19,6 @@ namespace Symfony\Component\Validator\Constraints;
*
* @api
*/
class Null extends IsNull {}
class Null extends IsNull
{
}

View File

@ -16,4 +16,6 @@ namespace Symfony\Component\Validator\Constraints;
*
* @api
*/
class NullValidator extends IsNullValidator {}
class NullValidator extends IsNullValidator
{
}

View File

@ -19,4 +19,6 @@ namespace Symfony\Component\Validator\Constraints;
*
* @api
*/
class True extends IsTrue {}
class True extends IsTrue
{
}

View File

@ -16,4 +16,6 @@ namespace Symfony\Component\Validator\Constraints;
*
* @api
*/
class TrueValidator extends IsTrueValidator {}
class TrueValidator extends IsTrueValidator
{
}