Completed
Push — master ( c5a534...d91f26 )
by Dominik
03:54
created
src/Negotiation/AcceptLanguageNegotiator.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
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             $values[$locale] = $attributes;
69 69
         }
70 70
 
71
-        uasort($values, function (array $a, array $b) {
71
+        uasort($values, function(array $a, array $b) {
72 72
             return $b['q'] <=> $a['q'];
73 73
         });
74 74
 
Please login to merge, or discard this patch.