This commit is contained in:
Pierre Rudloff 2020-10-21 23:07:12 +02:00
parent 342b8c4a42
commit 68f2255fa0
3 changed files with 4 additions and 1 deletions

View File

@ -15,7 +15,6 @@ use Alltube\Exception\DependencyException;
use Alltube\Factory\LocaleManagerFactory; use Alltube\Factory\LocaleManagerFactory;
use Alltube\Factory\SessionFactory; use Alltube\Factory\SessionFactory;
use Alltube\Factory\ViewFactory; use Alltube\Factory\ViewFactory;
use Alltube\LocaleManager;
use Psr\Log\NullLogger; use Psr\Log\NullLogger;
use Slim\Container; use Slim\Container;
use Slim\Http\Environment; use Slim\Http\Environment;

View File

@ -8,6 +8,7 @@ namespace Alltube\Test;
use Alltube\Controller\FrontController; use Alltube\Controller\FrontController;
use Alltube\Exception\ConfigException; use Alltube\Exception\ConfigException;
use Alltube\Exception\DependencyException;
use Alltube\Library\Exception\AlltubeLibraryException; use Alltube\Library\Exception\AlltubeLibraryException;
use Exception; use Exception;
use Slim\Http\Environment; use Slim\Http\Environment;
@ -28,6 +29,7 @@ class FrontControllerTest extends ControllerTest
/** /**
* Prepare tests. * Prepare tests.
* @throws ConfigException|SmartyException * @throws ConfigException|SmartyException
* @throws DependencyException
*/ */
protected function setUp(): void protected function setUp(): void
{ {

View File

@ -8,6 +8,7 @@ namespace Alltube\Test;
use Alltube\Controller\JsonController; use Alltube\Controller\JsonController;
use Alltube\Exception\ConfigException; use Alltube\Exception\ConfigException;
use Alltube\Exception\DependencyException;
use Alltube\Library\Exception\YoutubedlException; use Alltube\Library\Exception\YoutubedlException;
use SmartyException; use SmartyException;
@ -19,6 +20,7 @@ class JsonControllerTest extends ControllerTest
/** /**
* Prepare tests. * Prepare tests.
* @throws ConfigException|SmartyException * @throws ConfigException|SmartyException
* @throws DependencyException
*/ */
protected function setUp(): void protected function setUp(): void
{ {