diff --git a/classes/streams/YoutubeChunkStream.php b/classes/streams/YoutubeChunkStream.php index 90a73bc..25c3ea8 100644 --- a/classes/streams/YoutubeChunkStream.php +++ b/classes/streams/YoutubeChunkStream.php @@ -14,7 +14,6 @@ use Psr\Http\Message\StreamInterface; */ class YoutubeChunkStream implements StreamInterface { - /** * HTTP response containing the video chunk. * diff --git a/classes/streams/YoutubeStream.php b/classes/streams/YoutubeStream.php index cdcf9cb..3557110 100644 --- a/classes/streams/YoutubeStream.php +++ b/classes/streams/YoutubeStream.php @@ -7,7 +7,6 @@ namespace Alltube\Stream; use Alltube\Video; use GuzzleHttp\Psr7\AppendStream; -use Psr\Http\Message\StreamInterface; /** * Stream that downloads a video in chunks. diff --git a/controllers/DownloadController.php b/controllers/DownloadController.php index 637e8a9..2d03218 100644 --- a/controllers/DownloadController.php +++ b/controllers/DownloadController.php @@ -5,12 +5,12 @@ namespace Alltube\Controller; -use Alltube\Stream\ConvertedPlaylistArchiveStream; use Alltube\Exception\EmptyUrlException; use Alltube\Exception\PasswordException; +use Alltube\Stream\ConvertedPlaylistArchiveStream; use Alltube\Stream\PlaylistArchiveStream; -use Alltube\Video; use Alltube\Stream\YoutubeStream; +use Alltube\Video; use Exception; use Slim\Http\Request; use Slim\Http\Response; diff --git a/controllers/FrontController.php b/controllers/FrontController.php index 903ded9..c89cad4 100644 --- a/controllers/FrontController.php +++ b/controllers/FrontController.php @@ -6,9 +6,9 @@ namespace Alltube\Controller; use Alltube\Config; +use Alltube\Exception\PasswordException; use Alltube\Locale; use Alltube\LocaleManager; -use Alltube\Exception\PasswordException; use Alltube\Video; use Exception; use Psr\Container\ContainerInterface;