Missing type hinting

This commit is contained in:
Pierre Rudloff 2016-08-01 03:05:14 +02:00
parent 352d51ff43
commit efde57bd60

View file

@ -17,6 +17,7 @@ use Alltube\Config;
use Slim\Http\Stream; use Slim\Http\Stream;
use Slim\Http\Request; use Slim\Http\Request;
use Slim\Http\Response; use Slim\Http\Response;
use Slim\Container;
/** /**
* Main controller * Main controller
@ -31,7 +32,7 @@ use Slim\Http\Response;
* */ * */
class FrontController class FrontController
{ {
public function __construct($container) public function __construct(Container $container)
{ {
$this->config = Config::getInstance(); $this->config = Config::getInstance();
$this->download = new VideoDownload(); $this->download = new VideoDownload();