Move FileControllerFactory to Factory dir

This commit is contained in:
Michael RICOIS 2016-07-22 15:35:09 +02:00
parent 100d9fe7d0
commit 1d91632b2c
2 changed files with 3 additions and 2 deletions

View File

@ -79,7 +79,7 @@ class FileController extends AbstractActionController
}
// Last line blank to always add a carrier return in console
$this->output("", $verbose);
$this->output("");
}
/**

View File

@ -1,9 +1,10 @@
<?php
namespace Application\Controller;
namespace Application\Factory;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Application\Controller\FileController;
class FileControllerFactory implements FactoryInterface
{