Completed
Push — master ( c3d3d1...acc9c4 )
by BruceScrutinizer
02:09
created
src/Parser/Node/PhpNode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,12 +59,12 @@
 block discarded – undo
59 59
         $this->matchKey = new BooleanMatchKey();
60 60
         $this->matchValue = new BooleanMatchValue();
61 61
 
62
-        $this->listNodeProcessor[UseUse::class] = static function (Node $node): string {
62
+        $this->listNodeProcessor[UseUse::class] = static function(Node $node): string {
63 63
             /** @var UseUse $node*/
64 64
             return $node->name->toCodeString();
65 65
         };
66 66
 
67
-        $this->listNodeProcessor[FullyQualified::class] = static function (Node $node): string {
67
+        $this->listNodeProcessor[FullyQualified::class] = static function(Node $node): string {
68 68
             /** @var FullyQualified $node*/
69 69
             return $node->toCodeString();
70 70
         };
Please login to merge, or discard this patch.
src/Command/NamespaceProtectorCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     private function stopWatch(float $script_start): float
30 30
     {
31 31
         list($usec, $sec) = explode(' ', microtime());
32
-        $script_end = (float) $sec + (float) $usec;
32
+        $script_end = (float)$sec + (float)$usec;
33 33
 
34 34
         return  round($script_end - $script_start, 5);
35 35
     }
Please login to merge, or discard this patch.