Skip to content
This repository was archived by the owner on Dec 9, 2023. It is now read-only.

Commit dad213b

Browse files
Merge branch '2.8' into 3.4
* 2.8: Alpha-ordering for "use" statements
1 parent ea77088 commit dad213b

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Command/ServerRunCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
use Symfony\Bundle\WebServerBundle\WebServer;
1515
use Symfony\Bundle\WebServerBundle\WebServerConfig;
1616
use Symfony\Component\Console\Input\InputArgument;
17-
use Symfony\Component\Console\Input\InputOption;
1817
use Symfony\Component\Console\Input\InputInterface;
19-
use Symfony\Component\Console\Output\OutputInterface;
18+
use Symfony\Component\Console\Input\InputOption;
2019
use Symfony\Component\Console\Output\ConsoleOutputInterface;
20+
use Symfony\Component\Console\Output\OutputInterface;
2121
use Symfony\Component\Console\Style\SymfonyStyle;
2222
use Symfony\Component\Process\Process;
2323

Command/ServerStartCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
use Symfony\Component\Console\Input\InputArgument;
1717
use Symfony\Component\Console\Input\InputInterface;
1818
use Symfony\Component\Console\Input\InputOption;
19-
use Symfony\Component\Console\Output\OutputInterface;
2019
use Symfony\Component\Console\Output\ConsoleOutputInterface;
20+
use Symfony\Component\Console\Output\OutputInterface;
2121
use Symfony\Component\Console\Style\SymfonyStyle;
2222
use Symfony\Component\EventDispatcher\EventDispatcher;
2323

Command/ServerStatusCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
use Symfony\Component\Console\Exception\InvalidArgumentException;
1616
use Symfony\Component\Console\Input\InputInterface;
1717
use Symfony\Component\Console\Input\InputOption;
18-
use Symfony\Component\Console\Output\OutputInterface;
1918
use Symfony\Component\Console\Output\ConsoleOutputInterface;
19+
use Symfony\Component\Console\Output\OutputInterface;
2020
use Symfony\Component\Console\Style\SymfonyStyle;
2121

2222
/**

Command/ServerStopCommand.php

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

1414
use Symfony\Bundle\WebServerBundle\WebServer;
1515
use Symfony\Component\Console\Input\InputInterface;
16-
use Symfony\Component\Console\Output\OutputInterface;
17-
use Symfony\Component\Console\Output\ConsoleOutputInterface;
1816
use Symfony\Component\Console\Input\InputOption;
17+
use Symfony\Component\Console\Output\ConsoleOutputInterface;
18+
use Symfony\Component\Console\Output\OutputInterface;
1919
use Symfony\Component\Console\Style\SymfonyStyle;
2020

2121
/**

DependencyInjection/WebServerExtension.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
namespace Symfony\Bundle\WebServerBundle\DependencyInjection;
1313

1414
use Symfony\Bridge\Monolog\Formatter\ConsoleFormatter;
15+
use Symfony\Component\Config\FileLocator;
16+
use Symfony\Component\DependencyInjection\ContainerBuilder;
1517
use Symfony\Component\DependencyInjection\Extension\Extension;
1618
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
17-
use Symfony\Component\DependencyInjection\ContainerBuilder;
18-
use Symfony\Component\Config\FileLocator;
1919

2020
/**
2121
* @author Robin Chalas <[email protected]>

WebServer.php

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

1212
namespace Symfony\Bundle\WebServerBundle;
1313

14+
use Symfony\Component\Process\Exception\RuntimeException;
1415
use Symfony\Component\Process\PhpExecutableFinder;
1516
use Symfony\Component\Process\Process;
16-
use Symfony\Component\Process\Exception\RuntimeException;
1717

1818
/**
1919
* Manages a local HTTP web server.

0 commit comments

Comments
 (0)