@@ -5,7 +5,7 @@ discard block |
||
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 |
||
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; |
@@ -5,7 +5,7 @@ discard block |
||
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\Compress; |
11 | 11 | |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | $this->context->debug("Used aux table:\n"); |
322 | 322 | } |
323 | 323 | $this->context->countAux = $this->context->countClasses; |
324 | - for (; ;) { |
|
324 | + for (;;) { |
|
325 | 325 | $maxGain = 0; |
326 | 326 | $maxAux = null; |
327 | 327 | $pre = null; |