Skip to content

Commit a281fdb

Browse files
Merge branch '2.8' into 3.4
* 2.8: Alpha-ordering for "use" statements
2 parents e264292 + f607411 commit a281fdb

File tree

97 files changed

+173
-173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+173
-173
lines changed

CacheWarmer/TemplateFinder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\CacheWarmer;
1313

14-
use Symfony\Component\HttpKernel\KernelInterface;
1514
use Symfony\Component\Finder\Finder;
15+
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
16+
use Symfony\Component\HttpKernel\KernelInterface;
1617
use Symfony\Component\Templating\TemplateNameParserInterface;
1718
use Symfony\Component\Templating\TemplateReferenceInterface;
18-
use Symfony\Component\HttpKernel\Bundle\BundleInterface;
1919

2020
/**
2121
* Finds all the templates.

CacheWarmer/TemplatePathsCacheWarmer.php

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

1212
namespace Symfony\Bundle\FrameworkBundle\CacheWarmer;
1313

14+
use Symfony\Bundle\FrameworkBundle\Templating\Loader\TemplateLocator;
1415
use Symfony\Component\Filesystem\Filesystem;
1516
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmer;
16-
use Symfony\Bundle\FrameworkBundle\Templating\Loader\TemplateLocator;
1717

1818
/**
1919
* Computes the association between template names and their paths on the disk.

Client.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle;
1313

14+
use Symfony\Component\BrowserKit\CookieJar;
15+
use Symfony\Component\BrowserKit\History;
1416
use Symfony\Component\DependencyInjection\ContainerInterface;
15-
use Symfony\Component\HttpKernel\KernelInterface;
16-
use Symfony\Component\HttpKernel\Client as BaseClient;
17-
use Symfony\Component\HttpKernel\Profiler\Profile as HttpProfile;
1817
use Symfony\Component\HttpFoundation\Request;
1918
use Symfony\Component\HttpFoundation\Response;
20-
use Symfony\Component\BrowserKit\History;
21-
use Symfony\Component\BrowserKit\CookieJar;
19+
use Symfony\Component\HttpKernel\Client as BaseClient;
20+
use Symfony\Component\HttpKernel\KernelInterface;
21+
use Symfony\Component\HttpKernel\Profiler\Profile as HttpProfile;
2222

2323
/**
2424
* Client simulates a browser and makes requests to a Kernel object.

Command/CacheClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
use Symfony\Component\EventDispatcher\EventDispatcher;
2020
use Symfony\Component\Filesystem\Exception\IOException;
2121
use Symfony\Component\Filesystem\Filesystem;
22+
use Symfony\Component\Finder\Finder;
2223
use Symfony\Component\HttpKernel\CacheClearer\CacheClearerInterface;
2324
use Symfony\Component\HttpKernel\KernelInterface;
2425
use Symfony\Component\HttpKernel\RebootableInterface;
25-
use Symfony\Component\Finder\Finder;
2626

2727
/**
2828
* Clear and Warmup the cache.

Command/CachePoolClearCommand.php

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

1414
use Psr\Cache\CacheItemPoolInterface;
1515
use Symfony\Component\Console\Exception\InvalidArgumentException;
16-
use Symfony\Component\Console\Input\InputInterface;
1716
use Symfony\Component\Console\Input\InputArgument;
17+
use Symfony\Component\Console\Input\InputInterface;
1818
use Symfony\Component\Console\Output\OutputInterface;
1919
use Symfony\Component\Console\Style\SymfonyStyle;
2020
use Symfony\Component\HttpKernel\CacheClearer\Psr6CacheClearer;

Command/ConfigDebugCommand.php

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

1414
use Symfony\Component\Config\Definition\Processor;
15+
use Symfony\Component\Console\Exception\LogicException;
1516
use Symfony\Component\Console\Input\InputArgument;
1617
use Symfony\Component\Console\Input\InputInterface;
1718
use Symfony\Component\Console\Output\OutputInterface;
1819
use Symfony\Component\Console\Style\SymfonyStyle;
19-
use Symfony\Component\Console\Exception\LogicException;
2020
use Symfony\Component\Yaml\Yaml;
2121

2222
/**

Command/ConfigDumpReferenceCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Command;
1313

14-
use Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper;
1514
use Symfony\Component\Config\Definition\Dumper\XmlReferenceDumper;
15+
use Symfony\Component\Config\Definition\Dumper\YamlReferenceDumper;
1616
use Symfony\Component\Console\Exception\InvalidArgumentException;
1717
use Symfony\Component\Console\Input\InputArgument;
18-
use Symfony\Component\Console\Input\InputOption;
1918
use Symfony\Component\Console\Input\InputInterface;
19+
use Symfony\Component\Console\Input\InputOption;
2020
use Symfony\Component\Console\Output\OutputInterface;
2121
use Symfony\Component\Console\Style\SymfonyStyle;
2222

Command/ContainerAwareCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
namespace Symfony\Bundle\FrameworkBundle\Command;
1313

1414
use Symfony\Component\Console\Command\Command;
15-
use Symfony\Component\DependencyInjection\ContainerInterface;
1615
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
16+
use Symfony\Component\DependencyInjection\ContainerInterface;
1717

1818
/**
1919
* Command.

Command/ContainerDebugCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313

1414
use Symfony\Bundle\FrameworkBundle\Console\Helper\DescriptorHelper;
1515
use Symfony\Component\Config\ConfigCache;
16+
use Symfony\Component\Config\FileLocator;
1617
use Symfony\Component\Console\Exception\InvalidArgumentException;
1718
use Symfony\Component\Console\Input\InputArgument;
18-
use Symfony\Component\Console\Input\InputOption;
1919
use Symfony\Component\Console\Input\InputInterface;
20+
use Symfony\Component\Console\Input\InputOption;
2021
use Symfony\Component\Console\Output\OutputInterface;
2122
use Symfony\Component\Console\Style\SymfonyStyle;
22-
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
2323
use Symfony\Component\DependencyInjection\ContainerBuilder;
24+
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
2425
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
25-
use Symfony\Component\Config\FileLocator;
2626

2727
/**
2828
* A console command for retrieving information about services.

Command/EventDispatcherDebugCommand.php

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

1414
use Symfony\Bundle\FrameworkBundle\Console\Helper\DescriptorHelper;
1515
use Symfony\Component\Console\Input\InputArgument;
16-
use Symfony\Component\Console\Input\InputOption;
1716
use Symfony\Component\Console\Input\InputInterface;
17+
use Symfony\Component\Console\Input\InputOption;
1818
use Symfony\Component\Console\Output\OutputInterface;
1919
use Symfony\Component\Console\Style\SymfonyStyle;
2020
use Symfony\Component\EventDispatcher\EventDispatcherInterface;

0 commit comments

Comments
 (0)