style(styleci): Lint

This commit is contained in:
Pierre Rudloff 2019-04-22 21:08:36 +02:00
parent b7bcc24320
commit 84e9e86d28
4 changed files with 3 additions and 5 deletions

View File

@ -14,7 +14,6 @@ use Psr\Http\Message\StreamInterface;
*/
class YoutubeChunkStream implements StreamInterface
{
/**
* HTTP response containing the video chunk.
*

View File

@ -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.

View File

@ -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;

View File

@ -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;