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 class YoutubeChunkStream implements StreamInterface
{ {
/** /**
* HTTP response containing the video chunk. * HTTP response containing the video chunk.
* *

View file

@ -7,7 +7,6 @@ namespace Alltube\Stream;
use Alltube\Video; use Alltube\Video;
use GuzzleHttp\Psr7\AppendStream; use GuzzleHttp\Psr7\AppendStream;
use Psr\Http\Message\StreamInterface;
/** /**
* Stream that downloads a video in chunks. * Stream that downloads a video in chunks.

View file

@ -5,12 +5,12 @@
namespace Alltube\Controller; namespace Alltube\Controller;
use Alltube\Stream\ConvertedPlaylistArchiveStream;
use Alltube\Exception\EmptyUrlException; use Alltube\Exception\EmptyUrlException;
use Alltube\Exception\PasswordException; use Alltube\Exception\PasswordException;
use Alltube\Stream\ConvertedPlaylistArchiveStream;
use Alltube\Stream\PlaylistArchiveStream; use Alltube\Stream\PlaylistArchiveStream;
use Alltube\Video;
use Alltube\Stream\YoutubeStream; use Alltube\Stream\YoutubeStream;
use Alltube\Video;
use Exception; use Exception;
use Slim\Http\Request; use Slim\Http\Request;
use Slim\Http\Response; use Slim\Http\Response;

View file

@ -6,9 +6,9 @@
namespace Alltube\Controller; namespace Alltube\Controller;
use Alltube\Config; use Alltube\Config;
use Alltube\Exception\PasswordException;
use Alltube\Locale; use Alltube\Locale;
use Alltube\LocaleManager; use Alltube\LocaleManager;
use Alltube\Exception\PasswordException;
use Alltube\Video; use Alltube\Video;
use Exception; use Exception;
use Psr\Container\ContainerInterface; use Psr\Container\ContainerInterface;