Skip to content

Commit 1b71286

Browse files
Merge branch '3.4' into 4.0
* 3.4: Alpha-ordering for "use" statements
2 parents 1f9588e + 8beb598 commit 1b71286

13 files changed

+13
-13
lines changed

Context/ExecutionContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
use Symfony\Component\Validator\ConstraintViolation;
1717
use Symfony\Component\Validator\ConstraintViolationList;
1818
use Symfony\Component\Validator\Mapping\ClassMetadataInterface;
19-
use Symfony\Component\Validator\Mapping\MetadataInterface;
2019
use Symfony\Component\Validator\Mapping\MemberMetadata;
20+
use Symfony\Component\Validator\Mapping\MetadataInterface;
2121
use Symfony\Component\Validator\Mapping\PropertyMetadataInterface;
2222
use Symfony\Component\Validator\Util\PropertyPath;
2323
use Symfony\Component\Validator\Validator\ValidatorInterface;

Context/ExecutionContextInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
namespace Symfony\Component\Validator\Context;
1313

1414
use Symfony\Component\Validator\Constraint;
15+
use Symfony\Component\Validator\ConstraintViolationListInterface;
1516
use Symfony\Component\Validator\Mapping;
1617
use Symfony\Component\Validator\Mapping\MetadataInterface;
1718
use Symfony\Component\Validator\Validator\ValidatorInterface;
1819
use Symfony\Component\Validator\Violation\ConstraintViolationBuilderInterface;
19-
use Symfony\Component\Validator\ConstraintViolationListInterface;
2020

2121
/**
2222
* The context of a validation run.

DependencyInjection/AddConstraintValidatorsPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
namespace Symfony\Component\Validator\DependencyInjection;
1313

14-
use Symfony\Component\DependencyInjection\ContainerBuilder;
1514
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
1615
use Symfony\Component\DependencyInjection\Compiler\ServiceLocatorTagPass;
16+
use Symfony\Component\DependencyInjection\ContainerBuilder;
1717
use Symfony\Component\DependencyInjection\Reference;
1818

1919
/**

DependencyInjection/AddValidatorInitializersPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
namespace Symfony\Component\Validator\DependencyInjection;
1313

14+
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
1415
use Symfony\Component\DependencyInjection\ContainerBuilder;
1516
use Symfony\Component\DependencyInjection\Reference;
16-
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
1717

1818
/**
1919
* @author Fabien Potencier <fabien@symfony.com>

Tests/Constraints/BicValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Validator\Tests\Constraints;
1313

14-
use Symfony\Component\Validator\Constraints\BicValidator;
1514
use Symfony\Component\Validator\Constraints\Bic;
15+
use Symfony\Component\Validator\Constraints\BicValidator;
1616
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
1717

1818
class BicValidatorTest extends ConstraintValidatorTestCase

Tests/DependencyInjection/AddConstraintValidatorsPassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
namespace Symfony\Component\Validator\Tests\DependencyInjection;
1313

1414
use PHPUnit\Framework\TestCase;
15-
use Symfony\Component\Validator\DependencyInjection\AddConstraintValidatorsPass;
1615
use Symfony\Component\DependencyInjection\Argument\ServiceClosureArgument;
1716
use Symfony\Component\DependencyInjection\ContainerBuilder;
1817
use Symfony\Component\DependencyInjection\Definition;
1918
use Symfony\Component\DependencyInjection\Reference;
2019
use Symfony\Component\DependencyInjection\ServiceLocator;
20+
use Symfony\Component\Validator\DependencyInjection\AddConstraintValidatorsPass;
2121

2222
class AddConstraintValidatorsPassTest extends TestCase
2323
{

Tests/Fixtures/EntityStaticCar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Validator\Tests\Fixtures;
1313

14-
use Symfony\Component\Validator\Mapping\ClassMetadata;
1514
use Symfony\Component\Validator\Constraints\Length;
15+
use Symfony\Component\Validator\Mapping\ClassMetadata;
1616

1717
class EntityStaticCar extends EntityStaticVehicle
1818
{

Tests/Fixtures/EntityStaticCarTurbo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Validator\Tests\Fixtures;
1313

14-
use Symfony\Component\Validator\Mapping\ClassMetadata;
1514
use Symfony\Component\Validator\Constraints\Length;
15+
use Symfony\Component\Validator\Mapping\ClassMetadata;
1616

1717
class EntityStaticCarTurbo extends EntityStaticCar
1818
{

Tests/Fixtures/EntityStaticVehicle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Validator\Tests\Fixtures;
1313

14-
use Symfony\Component\Validator\Mapping\ClassMetadata;
1514
use Symfony\Component\Validator\Constraints\Length;
15+
use Symfony\Component\Validator\Mapping\ClassMetadata;
1616

1717
class EntityStaticVehicle
1818
{

Tests/Mapping/Loader/AnnotationLoaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
use Symfony\Component\Validator\Constraints\Callback;
1818
use Symfony\Component\Validator\Constraints\Choice;
1919
use Symfony\Component\Validator\Constraints\Collection;
20+
use Symfony\Component\Validator\Constraints\IsTrue;
2021
use Symfony\Component\Validator\Constraints\NotNull;
2122
use Symfony\Component\Validator\Constraints\Range;
22-
use Symfony\Component\Validator\Constraints\IsTrue;
2323
use Symfony\Component\Validator\Constraints\Valid;
2424
use Symfony\Component\Validator\Mapping\ClassMetadata;
2525
use Symfony\Component\Validator\Mapping\Loader\AnnotationLoader;

0 commit comments

Comments
 (0)