@@ -59,12 +59,12 @@ |
||
| 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 | }; |
@@ -29,7 +29,7 @@ |
||
| 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 | } |