diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-07-09 19:32:30 +0200 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-07-09 19:32:30 +0200 |
commit | 3309c89b05a46a03d09ffef693ed309699a3f59b (patch) | |
tree | daeb50b517b2e23b3d97df472b45f21a0e47fdf9 | |
parent | e967f3c1a81eab0f14daf314b7fb1b2001e4d220 (diff) | |
download | forums-3309c89b05a46a03d09ffef693ed309699a3f59b.tar forums-3309c89b05a46a03d09ffef693ed309699a3f59b.tar.gz forums-3309c89b05a46a03d09ffef693ed309699a3f59b.tar.bz2 forums-3309c89b05a46a03d09ffef693ed309699a3f59b.tar.xz forums-3309c89b05a46a03d09ffef693ed309699a3f59b.zip |
[ticket/13740] Fix CS
PHPBB3-13740
-rw-r--r-- | phpBB/phpbb/install/installer.php | 1 | ||||
-rw-r--r-- | phpBB/phpbb/install/module/requirements/module.php | 1 | ||||
-rw-r--r-- | phpBB/phpbb/install/module_base.php | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/phpBB/phpbb/install/installer.php b/phpBB/phpbb/install/installer.php index c1ac2de7f9..33b9214cfa 100644 --- a/phpBB/phpbb/install/installer.php +++ b/phpBB/phpbb/install/installer.php @@ -21,7 +21,6 @@ use phpbb\install\exception\user_interaction_required_exception; use phpbb\install\helper\config; use phpbb\install\helper\iohandler\iohandler_interface; use Symfony\Component\DependencyInjection\ContainerInterface; -use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; class installer { diff --git a/phpBB/phpbb/install/module/requirements/module.php b/phpBB/phpbb/install/module/requirements/module.php index 794a35bef5..79a031bad9 100644 --- a/phpBB/phpbb/install/module/requirements/module.php +++ b/phpBB/phpbb/install/module/requirements/module.php @@ -15,7 +15,6 @@ namespace phpbb\install\module\requirements; use phpbb\install\exception\resource_limit_reached_exception; use phpbb\install\exception\user_interaction_required_exception; -use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; class module extends \phpbb\install\module_base { diff --git a/phpBB/phpbb/install/module_base.php b/phpBB/phpbb/install/module_base.php index e0cb862be9..eb04379f8e 100644 --- a/phpBB/phpbb/install/module_base.php +++ b/phpBB/phpbb/install/module_base.php @@ -18,7 +18,6 @@ use phpbb\install\exception\resource_limit_reached_exception; use phpbb\install\helper\config; use phpbb\install\helper\iohandler\iohandler_interface; use Symfony\Component\DependencyInjection\ContainerInterface; -use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; /** * Base class for installer module |