Passed
Pull Request — master (#334)
by Antoine
10:19
created
src/TokensList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function __construct(array $tokens = [], $count = -1)
46 46
     {
47
-        if (! empty($tokens)) {
47
+        if (!empty($tokens)) {
48 48
             $this->tokens = $tokens;
49 49
             $this->count = $count === -1 ? count($tokens) : $count;
50 50
         }
Please login to merge, or discard this patch.
src/Components/WithKeyword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      */
33 33
     public static function build($component, array $options = [])
34 34
     {
35
-        if (! $component instanceof WithKeyword) {
35
+        if (!$component instanceof WithKeyword) {
36 36
             throw new RuntimeException('Can not build a component that is not a WithKeyword');
37 37
         }
38 38
 
Please login to merge, or discard this patch.
src/Statements/WithStatement.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 
22 22
 /**
23 23
  * `WITH` statement.
24
-
25 24
  *  WITH [RECURSIVE] query_name [ (column_name [,...]) ] AS (SELECT ...) [, ...]
26 25
  */
27 26
 class WithStatement extends Statement
Please login to merge, or discard this patch.