Move Installer to a separated namespace

This commit is contained in:
Dmitriy Simushev 2014-11-11 13:14:19 +00:00
parent df66227729
commit 1deebaff20
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@
namespace Mibew\Controller;
use Mibew\Installer;
use Mibew\Maintenance\Installer;
use Mibew\Style\PageStyle;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
@ -474,7 +474,7 @@ class InstallController extends AbstractController
/**
* Initialize installer.
*
* @return \Mibew\Installer
* @return \Mibew\Maintenance\Installer
*/
protected function getInstaller()
{

View File

@ -17,7 +17,7 @@
* limitations under the License.
*/
namespace Mibew;
namespace Mibew\Maintenance;
use Mibew\Database;
use Symfony\Component\Yaml\Parser as YamlParser;