Passed
Push — master ( 854b7d...2bd34a )
by Dominik
01:59
created
src/Negotiation/ContentNegotiator.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
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             $values[$contentType] = $attributes;
32 32
         }
33 33
 
34
-        uasort($values, function (array $a, array $b) {
34
+        uasort($values, function(array $a, array $b) {
35 35
             return $b['q'] <=> $a['q'];
36 36
         });
37 37
 
Please login to merge, or discard this patch.
src/Negotiation/ContentNegotiatorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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
 
Please login to merge, or discard this patch.
src/Negotiation/Content.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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
 
Please login to merge, or discard this patch.