Test Setup Failed
Push — master ( b0d345...439542 )
by
unknown
46:14 queued 21:07
created
lib/Middleware/TokenMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     public function __invoke(callable $handler): Closure
37 37
     {
38
-        return function (
38
+        return function(
39 39
             RequestInterface $request,
40 40
             array $options
41 41
         ) use ($handler) {
Please login to merge, or discard this patch.
lib/ApiClient/AbstractApiClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,12 +54,12 @@
 block discarded – undo
54 54
      */
55 55
     protected function sortChannels(ArrayCollection $channels)
56 56
     {
57
-        $channels->map(function ($channel) {
57
+        $channels->map(function($channel) {
58 58
             $channel->setChildren($this->sortChannels($channel->getChildren()));
59 59
         });
60 60
 
61 61
         $iterator = $channels->getIterator();
62
-        $iterator->uasort(function ($a, $b) {
62
+        $iterator->uasort(function($a, $b) {
63 63
             /* @var Channel $a */
64 64
             /* @var Channel $b */
65 65
             return $a->getName() > $b->getName();
Please login to merge, or discard this patch.
lib/Entity/Video.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -302,7 +302,7 @@
 block discarded – undo
302 302
         }
303 303
 
304 304
         //sorting preview's images from smallest to biggest
305
-        usort($this->stills, function (array $item1, array $item2) {
305
+        usort($this->stills, function(array $item1, array $item2) {
306 306
             if (isset($item1['dimension']['height'], $item2['dimension']['height']) && $item1['dimension']['height'] != $item2['dimension']['height']) {
307 307
                 return ($item1['dimension']['height'] > $item2['dimension']['height']) ? 1 : -1;
308 308
             }
Please login to merge, or discard this patch.