Passed
Push — master ( 430475...36db99 )
by Dominik
01:57
created
src/Negotiation/AcceptNegotiator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\ApiHttp\Negotiation;
6 6
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             $values[$mimeType] = $attributes;
47 47
         }
48 48
 
49
-        uasort($values, function (array $a, array $b) {
49
+        uasort($values, function(array $a, array $b) {
50 50
             return $b['q'] <=> $a['q'];
51 51
         });
52 52
 
Please login to merge, or discard this patch.