Passed
Push — master ( ab19ac...5fc55b )
by Kirill
02:55
created
src/Parser/Ast/Leaf.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Parser\Ast;
11 11
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     {
30 30
         parent::__construct($name, $offset);
31 31
 
32
-        $this->value     = $value;
32
+        $this->value = $value;
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
src/Parser/Ast/LeafInterface.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Parser\Ast;
11 11
 
Please login to merge, or discard this patch.
src/Parser/Rule/Alternation.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Parser\Rule;
11 11
 
Please login to merge, or discard this patch.
src/Grammar/Reader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Grammar;
11 11
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         $path = $token->value(1);
128 128
 
129 129
         foreach (self::FILE_EXTENSIONS as $extension) {
130
-            $file = \dirname($from->getPathname()) . '/' . $path . $extension;
130
+            $file = \dirname($from->getPathname()).'/'.$path.$extension;
131 131
 
132 132
             if (\is_file($file)) {
133 133
                 return File::fromPathname($file);
Please login to merge, or discard this patch.
src/Grammar/Reader/Analyzer/BaseAnalyzer.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Grammar\Reader\Analyzer;
11 11
 
Please login to merge, or discard this patch.
src/Grammar/Reader/PragmaParser.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Grammar\Reader;
11 11
 
Please login to merge, or discard this patch.
src/Grammar/Lexer/Grammar.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
  * For the full copyright and license information, please view the
6 6
  * LICENSE file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Grammar\Lexer;
11 11
 
Please login to merge, or discard this patch.
src/Grammar/ParsingResult.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Grammar;
11 11
 
Please login to merge, or discard this patch.
src/Parser/Rule/Symbol.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
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace Railt\Compiler\Parser\Rule;
11 11
 
Please login to merge, or discard this patch.