Skip to content

Commit f607411

Browse files
Alpha-ordering for "use" statements
1 parent 07bd17b commit f607411

File tree

104 files changed

+187
-187
lines changed

Some content is hidden

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

104 files changed

+187
-187
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,8 +11,8 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\CacheWarmer;
1313

14-
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmer;
1514
use Symfony\Bundle\FrameworkBundle\Templating\Loader\TemplateLocator;
15+
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmer;
1616

1717
/**
1818
* 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
@@ -15,8 +15,8 @@
1515
use Symfony\Component\Console\Input\InputOption;
1616
use Symfony\Component\Console\Output\OutputInterface;
1717
use Symfony\Component\Console\Style\SymfonyStyle;
18-
use Symfony\Component\HttpKernel\KernelInterface;
1918
use Symfony\Component\Finder\Finder;
19+
use Symfony\Component\HttpKernel\KernelInterface;
2020

2121
/**
2222
* Clear and Warmup the cache.

Command/ConfigDumpReferenceCommand.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\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\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

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
@@ -12,14 +12,14 @@
1212
namespace Symfony\Bundle\FrameworkBundle\Command;
1313

1414
use Symfony\Bundle\FrameworkBundle\Console\Helper\DescriptorHelper;
15+
use Symfony\Component\Config\FileLocator;
1516
use Symfony\Component\Console\Input\InputArgument;
16-
use Symfony\Component\Console\Input\InputOption;
1717
use Symfony\Component\Console\Input\InputInterface;
18+
use Symfony\Component\Console\Input\InputOption;
1819
use Symfony\Component\Console\Output\OutputInterface;
1920
use Symfony\Component\Console\Style\SymfonyStyle;
20-
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
2121
use Symfony\Component\DependencyInjection\ContainerBuilder;
22-
use Symfony\Component\Config\FileLocator;
22+
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
2323

2424
/**
2525
* 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;

Command/RouterApacheDumperCommand.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\Input\InputArgument;
15-
use Symfony\Component\Console\Input\InputOption;
1615
use Symfony\Component\Console\Input\InputInterface;
16+
use Symfony\Component\Console\Input\InputOption;
1717
use Symfony\Component\Console\Output\OutputInterface;
1818
use Symfony\Component\Console\Style\SymfonyStyle;
1919
use Symfony\Component\Routing\Matcher\Dumper\ApacheMatcherDumper;

Command/RouterDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
use Symfony\Component\Console\Input\InputOption;
1818
use Symfony\Component\Console\Output\OutputInterface;
1919
use Symfony\Component\Console\Style\SymfonyStyle;
20-
use Symfony\Component\Routing\RouterInterface;
2120
use Symfony\Component\Routing\Route;
21+
use Symfony\Component\Routing\RouterInterface;
2222

2323
/**
2424
* A console command for retrieving information about routes.

0 commit comments

Comments
 (0)