Completed
Push — master ( 9c7d46...b7ab7b )
by Kirill
09:13 queued 06:53
created
src/Frontend/Type/Type.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      */
79 79
     private function bootInheritance(\SplStack $stack, array $children = []): void
80 80
     {
81
-        $push = function (string $type) use ($stack): void {
81
+        $push = function(string $type) use ($stack): void {
82 82
             self::$inheritance[$type]   = \array_values(\iterator_to_array($stack));
83 83
             self::$inheritance[$type][] = static::ROOT_TYPE;
84 84
 
Please login to merge, or discard this patch.
src/Frontend/Builder/DefinitionBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function match(RuleInterface $rule): bool
43 43
     {
44
-        return (bool)(self::TYPE_DEFINITIONS[$rule->getName()] ?? false);
44
+        return (bool) (self::TYPE_DEFINITIONS[$rule->getName()] ?? false);
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.
src/Frontend/Builder/ImportBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
             return $inclusion;
95 95
         }
96 96
 
97
-        $pathname = \dirname($file->getPathname()) . \DIRECTORY_SEPARATOR . $inclusion;
97
+        $pathname = \dirname($file->getPathname()).\DIRECTORY_SEPARATOR.$inclusion;
98 98
         $pathname = \str_replace('/./', '/', $pathname);
99 99
 
100 100
         return $pathname;
Please login to merge, or discard this patch.
src/Frontend/AST/Scalar/ConstantValueNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
 {
17 17
     protected function parse(): void
18 18
     {
19
-        throw new \LogicException(__METHOD__ . ' not implemented yet');
19
+        throw new \LogicException(__METHOD__.' not implemented yet');
20 20
     }
21 21
 }
Please login to merge, or discard this patch.