Skip to content

Commit f262579

Browse files
Merge branch '3.4' into 4.0
* 3.4: Alpha-ordering for "use" statements
2 parents b0ec679 + a281fdb commit f262579

File tree

88 files changed

+162
-162
lines changed

Some content is hidden

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

88 files changed

+162
-162
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
@@ -20,9 +20,9 @@
2020
use Symfony\Component\EventDispatcher\EventDispatcher;
2121
use Symfony\Component\Filesystem\Exception\IOException;
2222
use Symfony\Component\Filesystem\Filesystem;
23+
use Symfony\Component\Finder\Finder;
2324
use Symfony\Component\HttpKernel\CacheClearer\CacheClearerInterface;
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
@@ -14,8 +14,8 @@
1414
use Psr\Cache\CacheItemPoolInterface;
1515
use Symfony\Component\Console\Command\Command;
1616
use Symfony\Component\Console\Exception\InvalidArgumentException;
17-
use Symfony\Component\Console\Input\InputInterface;
1817
use Symfony\Component\Console\Input\InputArgument;
18+
use Symfony\Component\Console\Input\InputInterface;
1919
use Symfony\Component\Console\Output\OutputInterface;
2020
use Symfony\Component\Console\Style\SymfonyStyle;
2121
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\DependencyInjection\ContainerBuilder;
2121
use Symfony\Component\Yaml\Yaml;
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,17 +13,17 @@
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\Command\Command;
1718
use Symfony\Component\Console\Exception\InvalidArgumentException;
1819
use Symfony\Component\Console\Input\InputArgument;
19-
use Symfony\Component\Console\Input\InputOption;
2020
use Symfony\Component\Console\Input\InputInterface;
21+
use Symfony\Component\Console\Input\InputOption;
2122
use Symfony\Component\Console\Output\OutputInterface;
2223
use Symfony\Component\Console\Style\SymfonyStyle;
23-
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
2424
use Symfony\Component\DependencyInjection\ContainerBuilder;
25+
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
2526
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
26-
use Symfony\Component\Config\FileLocator;
2727

2828
/**
2929
* 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
@@ -14,8 +14,8 @@
1414
use Symfony\Bundle\FrameworkBundle\Console\Helper\DescriptorHelper;
1515
use Symfony\Component\Console\Command\Command;
1616
use Symfony\Component\Console\Input\InputArgument;
17-
use Symfony\Component\Console\Input\InputOption;
1817
use Symfony\Component\Console\Input\InputInterface;
18+
use Symfony\Component\Console\Input\InputOption;
1919
use Symfony\Component\Console\Output\OutputInterface;
2020
use Symfony\Component\Console\Style\SymfonyStyle;
2121
use Symfony\Component\EventDispatcher\EventDispatcherInterface;

0 commit comments

Comments
 (0)