Completed
Push — master ( 831cd8...4849d0 )
by
unknown
45:37 queued 20:41
created
lib/ApiClient/Guzzle5ApiClient.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @param string $uri
21 21
      * @param array  $options
22 22
      *
23
-     * @return \GuzzleHttp\Message\ResponseInterface
23
+     * @return \Psr\Http\Message\ResponseInterface
24 24
      */
25 25
     protected function _doRequest($method, $uri, $options)
26 26
     {
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace MovingImage\Client\VMPro\ApiClient;
4 4
 
5 5
 use GuzzleHttp\Message\Response;
6
-use MovingImage\Client\VMPro\ApiClient;
7
-use MovingImage\Client\VMPro\Interfaces\ApiClientInterface;
8 6
 use GuzzleHttp\Message\ResponseInterface;
9
-use MovingImage\Client\VMPro\Exception;
10 7
 use GuzzleHttp\Stream\Stream;
8
+use MovingImage\Client\VMPro\ApiClient;
9
+use MovingImage\Client\VMPro\Exception;
10
+use MovingImage\Client\VMPro\Interfaces\ApiClientInterface;
11 11
 
12 12
 /**
13 13
  * Class Guzzle5ApiClient.
Please login to merge, or discard this patch.
lib/Entity/Video.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace MovingImage\Client\VMPro\Entity;
4 4
 
5
-use JMS\Serializer\Annotation\Type;
6 5
 use JMS\Serializer\Annotation\SerializedName;
6
+use JMS\Serializer\Annotation\Type;
7 7
 use MovingImage\Meta\Interfaces\VideoInterface;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -398,7 +398,7 @@
 block discarded – undo
398 398
     public function getStills()
399 399
     {
400 400
         //sorting preview's images from smallest to biggest
401
-        usort($this->stills, function (array $item1, array $item2) {
401
+        usort($this->stills, function(array $item1, array $item2) {
402 402
             if (isset($item1['dimension']['height'], $item2['dimension']['height']) && $item1['dimension']['height'] != $item2['dimension']['height']) {
403 403
                 return ($item1['dimension']['height'] > $item2['dimension']['height']) ? 1 : -1;
404 404
             }
Please login to merge, or discard this patch.
lib/Middleware/TokenMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public function __invoke(callable $handler)
48 48
     {
49
-        return function (
49
+        return function(
50 50
             RequestInterface $request,
51 51
             array $options
52 52
         ) use ($handler) {
Please login to merge, or discard this patch.
lib/ApiClient/AbstractApiClient.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,12 +45,12 @@
 block discarded – undo
45 45
      */
46 46
     protected function sortChannels(ArrayCollection $channels)
47 47
     {
48
-        $channels->map(function ($channel) {
48
+        $channels->map(function($channel) {
49 49
             $channel->setChildren($this->sortChannels($channel->getChildren()));
50 50
         });
51 51
 
52 52
         $iterator = $channels->getIterator();
53
-        $iterator->uasort(function ($a, $b) {
53
+        $iterator->uasort(function($a, $b) {
54 54
             return $a->getName() > $b->getName();
55 55
         });
56 56
 
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@
 block discarded – undo
10 10
 use MovingImage\Client\VMPro\Entity\ChannelsRequestParameters;
11 11
 use MovingImage\Client\VMPro\Entity\EmbedCode;
12 12
 use MovingImage\Client\VMPro\Entity\Keyword;
13
+use MovingImage\Client\VMPro\Entity\Thumbnail;
13 14
 use MovingImage\Client\VMPro\Entity\UserInfo;
14 15
 use MovingImage\Client\VMPro\Entity\Video;
15 16
 use MovingImage\Client\VMPro\Entity\VideoDownloadUrl;
16 17
 use MovingImage\Client\VMPro\Entity\VideoManager;
17 18
 use MovingImage\Client\VMPro\Entity\VideoRequestParameters;
18 19
 use MovingImage\Client\VMPro\Entity\VideosRequestParameters;
19
-use MovingImage\Client\VMPro\Entity\Thumbnail;
20 20
 use MovingImage\Client\VMPro\Interfaces\ApiClientInterface;
21 21
 use MovingImage\Client\VMPro\Util\ChannelTrait;
22 22
 use MovingImage\Client\VMPro\Util\Logging\Traits\LoggerAwareTrait;
Please login to merge, or discard this patch.
lib/Entity/Channel.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace MovingImage\Client\VMPro\Entity;
4 4
 
5 5
 use Doctrine\Common\Collections\ArrayCollection;
6
-use JMS\Serializer\Annotation\Type;
7 6
 use JMS\Serializer\Annotation\SerializedName;
7
+use JMS\Serializer\Annotation\Type;
8 8
 use MovingImage\Meta\Interfaces\ChannelInterface;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
lib/ApiClient/AbstractCoreApiClient.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
      * @param string $data
169 169
      * @param string $serialisationClass
170 170
      *
171
-     * @return object
171
+     * @return \MovingImage\Meta\Interfaces\ChannelInterface[]
172 172
      */
173 173
     protected function deserialize($data, $serialisationClass)
174 174
     {
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
      * @param string $method
236 236
      * @param string $uri
237 237
      * @param array  $options
238
-     * @param mixed  $response
238
+     * @param ResponseInterface  $response
239 239
      *
240 240
      * @return bool
241 241
      */
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
      * Serializes the provided response to a string, suitable for caching.
268 268
      * The type of the $response argument varies depending on the guzzle version.
269 269
      *
270
-     * @param mixed $response
270
+     * @param ResponseInterface $response
271 271
      *
272 272
      * @return string
273 273
      */
Please login to merge, or discard this patch.
lib/Factory/AbstractApiClientFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 
62 62
         $serializerBuilder = SerializerBuilder::create();
63 63
 
64
-        $serializerBuilder->configureHandlers(static function (HandlerRegistry $registry) {
64
+        $serializerBuilder->configureHandlers(static function(HandlerRegistry $registry) {
65 65
             $registry->registerSubscribingHandler(new DeserializeAttachmentSubscriber());
66 66
         });
67 67
 
Please login to merge, or discard this patch.