@@ -44,7 +44,7 @@ |
||
| 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 | } |
@@ -32,7 +32,7 @@ |
||
| 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 | |
@@ -21,7 +21,6 @@ |
||
| 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 |
@@ -180,7 +180,7 @@ |
||
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | ++$list->idx; |
| 183 | - if (! isset($list->tokens[$list->idx])) { |
|
| 183 | + if (!isset($list->tokens[$list->idx])) { |
|
| 184 | 184 | break; |
| 185 | 185 | } |
| 186 | 186 | |