Passed
Push — main ( 33cfc8...228a94 )
by Thomas
13:45
created
src/Registry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             return $keys;
57 57
         }
58 58
 
59
-        return array_values(array_filter($keys, function ($item) {
59
+        return array_values(array_filter($keys, function($item) {
60 60
             return $item !== PsrContainer::class && !is_subclass_of($item, PsrContainer::class);
61 61
         }));
62 62
     }
Please login to merge, or discard this patch.
src/Server/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 if (!function_exists('getServerEchoSpacer')) {
6 6
     function getServerEchoSpacer(string $leftSide, string $rightSide, int $columns): string
7 7
     {
8
-        $strlen = function (string $str): int {
8
+        $strlen = function(string $str): int {
9 9
             if (function_exists('mb_strlen')) {
10 10
                 return mb_strlen($str);
11 11
             }
Please login to merge, or discard this patch.