@@ -3,7 +3,6 @@ discard block |
||
| 3 | 3 | namespace Bone\Mvc; |
| 4 | 4 | |
| 5 | 5 | use Barnacle\Container; |
| 6 | -use Barnacle\Exception\NotFoundException; |
|
| 7 | 6 | use Barnacle\RegistrationInterface; |
| 8 | 7 | use Bone\Db\DbPackage; |
| 9 | 8 | use Bone\Firewall\FirewallPackage; |
@@ -11,29 +10,16 @@ discard block |
||
| 11 | 10 | use Bone\Http\MiddlewareAwareInterface; |
| 12 | 11 | use Bone\I18n\I18nPackage; |
| 13 | 12 | use Bone\I18n\I18nRegistrationInterface; |
| 14 | -use Bone\I18n\View\Extension\LocaleLink; |
|
| 15 | -use Bone\I18n\View\Extension\Translate; |
|
| 16 | 13 | use Bone\Log\LogPackage; |
| 17 | 14 | use Bone\Mvc\Controller\DownloadController; |
| 18 | 15 | use Bone\Mvc\Router; |
| 19 | -use Bone\Mvc\Router\Decorator\ExceptionDecorator; |
|
| 20 | -use Bone\Mvc\Router\Decorator\NotAllowedDecorator; |
|
| 21 | -use Bone\Mvc\Router\Decorator\NotFoundDecorator; |
|
| 22 | -use Bone\Mvc\Router\PlatesStrategy; |
|
| 23 | 16 | use Bone\Mvc\Router\RouterConfigInterface; |
| 24 | -use Bone\Mvc\View\Extension\Plates\AlertBox; |
|
| 25 | -use Bone\Mvc\View\ViewEngine; |
|
| 26 | -use Bone\View\Helper\Paginator; |
|
| 27 | 17 | use Bone\Mvc\View\PlatesEngine; |
| 28 | 18 | use Bone\I18n\Service\TranslatorFactory; |
| 29 | 19 | use Bone\View\ViewPackage; |
| 30 | 20 | use League\Plates\Template\Folders; |
| 31 | -use League\Route\Strategy\ApplicationStrategy; |
|
| 32 | 21 | use League\Route\Strategy\JsonStrategy; |
| 33 | -use Locale; |
|
| 34 | -use PDO; |
|
| 35 | 22 | use Laminas\Diactoros\ResponseFactory; |
| 36 | -use Laminas\I18n\Translator\Loader\Gettext; |
|
| 37 | 23 | use Laminas\I18n\Translator\Translator; |
| 38 | 24 | use Psr\Http\Server\MiddlewareInterface; |
| 39 | 25 | |