From 64ad54ebd6c461e6b424933b57aa5ec674d853e5 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 11 Mar 2015 22:08:28 +0100 Subject: [PATCH] Optimize imports in Web.php --- library/Icinga/Application/Web.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/library/Icinga/Application/Web.php b/library/Icinga/Application/Web.php index 909839de78..c07536e89a 100644 --- a/library/Icinga/Application/Web.php +++ b/library/Icinga/Application/Web.php @@ -5,22 +5,22 @@ require_once __DIR__ . '/ApplicationBootstrap.php'; -use Icinga\Authentication\Manager; +use Zend_Controller_Action_HelperBroker; +use Zend_Controller_Front; +use Zend_Controller_Router_Route; +use Zend_Layout; +use Zend_Paginator; +use Zend_View_Helper_PaginationControl; use Icinga\Application\Logger; +use Icinga\Authentication\Manager; +use Icinga\User; use Icinga\Util\TimezoneDetect; +use Icinga\Util\Translator; use Icinga\Web\Request; use Icinga\Web\Response; -use Icinga\Web\View; -use Icinga\Web\Session\Session as BaseSession; use Icinga\Web\Session; -use Icinga\User; -use Icinga\Util\Translator; -use Zend_Layout; -use Zend_Paginator; -use Zend_View_Helper_PaginationControl; -use Zend_Controller_Action_HelperBroker; -use Zend_Controller_Router_Route; -use Zend_Controller_Front; +use Icinga\Web\Session\Session as BaseSession; +use Icinga\Web\View; /** * Use this if you want to make use of Icinga functionality in other web projects