Test Failed
Pull Request — master (#266)
by Sergei
31:02 queued 19:28
created
src/SqlParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 final class SqlParser extends AbstractSqlParser
10 10
 {
11
-    public function getNextPlaceholder(int|null &$position = null): string|null
11
+    public function getNextPlaceholder(int|null&$position = null): string|null
12 12
     {
13 13
         $result = null;
14 14
         $length = $this->length - 1;
Please login to merge, or discard this patch.
src/DQLQueryBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@
 block discarded – undo
39 39
 
40 40
         if ($this->hasOffset($offset)) {
41 41
             $filters[] = 'rowNumId > ' .
42
-                ($offset instanceof ExpressionInterface ? $this->buildExpression($offset) : (string)$offset);
42
+                ($offset instanceof ExpressionInterface ? $this->buildExpression($offset) : (string) $offset);
43 43
         }
44 44
 
45 45
         if ($this->hasLimit($limit)) {
46 46
             $filters[] = 'rownum <= ' .
47
-                ($limit instanceof ExpressionInterface ? $this->buildExpression($limit) : (string)$limit);
47
+                ($limit instanceof ExpressionInterface ? $this->buildExpression($limit) : (string) $limit);
48 48
         }
49 49
 
50 50
         if (empty($filters)) {
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
9 9
 use Rector\Set\ValueObject\LevelSetList;
10 10
 
11
-return static function (RectorConfig $rectorConfig): void {
11
+return static function(RectorConfig $rectorConfig): void {
12 12
     $rectorConfig->paths([
13 13
         __DIR__ . '/src',
14 14
         /**
Please login to merge, or discard this patch.