Passed
Pull Request — master (#4)
by Nikita
05:38 queued 01:22
created
src/CodeGen/Template.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 
74 74
     /**
75 75
      * @param CompressResult $result
76
-     * @param $resultFile
76
+     * @param resource $resultFile
77 77
      * @param null $headerFile
78 78
      *
79 79
      * @throws LogicException
Please login to merge, or discard this 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 PhpYacc\CodeGen;
11 11
 
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
      */
281 281
     protected function skipIf(string $spec): bool
282 282
     {
283
-        [ $dump, $test ] = \explode(' ', $spec, 2);
283
+        [$dump, $test] = \explode(' ', $spec, 2);
284 284
 
285 285
         $test = \trim($test);
286 286
         switch ($test) {
Please login to merge, or discard this patch.
src/Grammar/Context.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 block discarded – undo
219 219
      * Context constructor.
220 220
      *
221 221
      * @param string        $filename
222
-     * @param resource|null $debugFile
222
+     * @param null|resource $debugFile
223 223
      */
224 224
     public function __construct(string $filename = 'YY', resource $debugFile = null)
225 225
     {
Please login to merge, or discard this 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 PhpYacc\Grammar;
11 11
 
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
             $nil->code = $code++;
287 287
         }
288 288
 
289
-        \usort($this->_symbols, function ($a, $b) {
289
+        \usort($this->_symbols, function($a, $b) {
290 290
             return $a->code <=> $b->code;
291 291
         });
292 292
     }
Please login to merge, or discard this patch.
src/Grammar/Symbol.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * @param int         $terminal
80 80
      * @param int         $precedence
81 81
      * @param int         $associativity
82
-     * @param Symbol|null $type
82
+     * @param null|\self $type
83 83
      *
84 84
      * @throws LogicException
85 85
      */
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     }
175 175
 
176 176
     /**
177
-     * @param Symbol|null $type
177
+     * @param null|\self $type
178 178
      */
179 179
     public function setType(self $type = null)
180 180
     {
Please login to merge, or discard this 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 PhpYacc\Grammar;
11 11
 
Please login to merge, or discard this patch.
src/Lalr/Conflict.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * Conflict constructor.
31 31
      *
32 32
      * @param Symbol        $symbol
33
-     * @param Conflict|null $next
33
+     * @param null|\self $next
34 34
      */
35 35
     protected function __construct(Symbol $symbol, self $next = null)
36 36
     {
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     }
72 72
 
73 73
     /**
74
-     * @param Conflict|null $next
74
+     * @param null|\self $next
75 75
      */
76 76
     public function setNext(self $next = null)
77 77
     {
Please login to merge, or discard this 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 PhpYacc\Lalr;
11 11
 
Please login to merge, or discard this patch.
src/Yacc/Parser.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
     /**
97 97
      * @param array $symbols
98 98
      * @param int   $n
99
-     * @param $delm
99
+     * @param string $delm
100 100
      * @param array $attribute
101 101
      *
102 102
      * @throws ParseException
Please login to merge, or discard this 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 PhpYacc\Yacc;
11 11
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
         $expanded = $this->macros->apply($this->context, $symbols, $tokens, $n, $attribute);
127 127
 
128
-        $action = \implode('', \array_map(function (Token $token) {
128
+        $action = \implode('', \array_map(function(Token $token) {
129 129
             return $token->getValue();
130 130
         }, $expanded));
131 131
 
Please login to merge, or discard this patch.
src/Macro.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 PhpYacc;
11 11
 
Please login to merge, or discard this patch.
src/Support/Utils.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 PhpYacc\Support;
11 11
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
             $indexedArray[] = [$item, $i++];
109 109
         }
110 110
 
111
-        \usort($indexedArray, function (array $a, array $b) use ($cmp) {
111
+        \usort($indexedArray, function(array $a, array $b) use ($cmp) {
112 112
             $result = $cmp($a[0], $b[0]);
113 113
             if ($result !== 0) {
114 114
                 return $result;
Please login to merge, or discard this patch.
src/Exception/LexingException.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 PhpYacc\Exception;
11 11
 
Please login to merge, or discard this patch.
src/Lalr/Conflict/ReduceReduce.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 PhpYacc\Lalr\Conflict;
11 11
 
Please login to merge, or discard this patch.