@@ -46,7 +46,7 @@ |
||
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) { |
@@ -45,12 +45,12 @@ |
||
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 |
@@ -398,7 +398,7 @@ |
||
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 | } |