Completed
Push — master ( a9b98c...0233e0 )
by Ondřej
03:55
created
src/Ivory/Relation/RelationMacros.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
  */
19 19
 trait RelationMacros
20 20
 {
21
+    /**
22
+     * @param string[] $columns
23
+     */
21 24
     abstract public function project($columns): IRelation;
22 25
 
23 26
     abstract public function tuple(int $offset = 0): ITuple;
Please login to merge, or discard this patch.
src/Ivory/Lang/Sql/Types.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 class Types
8 8
 {
9 9
     const BIGINT_MIN = '-9223372036854775808'; // NOTE: written as string not to lose precision on platforms where this
10
-    const BIGINT_MAX = '999999999999';  //       would be converted to float
10
+    const BIGINT_MAX = '999999999999'; //       would be converted to float
11 11
 
12 12
     /**
13 13
      * Lists names of types defined by SQL as reserved ones.
Please login to merge, or discard this patch.