@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace hexydec\agentzero; |
4 | 4 | |
5 | 5 | class hints { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | // sort the values in importance order |
42 | 42 | $sort = ['Chromium', 'Chrome']; |
43 | 43 | $count = \count($sort); |
44 | - \uksort($items, function (string $a, string $b) use ($sort, $count) : int { |
|
44 | + \uksort($items, function(string $a, string $b) use ($sort, $count) : int { |
|
45 | 45 | $aval = $bval = $count; |
46 | 46 | foreach ($sort AS $key => $item) { |
47 | 47 | if (\mb_stripos($a, $item)) { |