@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 | |