Completed
Push — master ( 861874...5cabc4 )
by Jared
01:34
created
src/Statement/FromStatement.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * - addTable('Table,Table2')
47 47
      * - addTable(['Table','Table2']).
48 48
      *
49
-     * @param string|array $tables
49
+     * @param string $tables
50 50
      *
51 51
      * @return self
52 52
      */
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * - addJoin('Table,Table2')
70 70
      * - addJoin(['Table','Table2']).
71 71
      *
72
-     * @param string|array $tables table names
72
+     * @param string $tables table names
73 73
      * @param string       $on     ON condition
74 74
      * @param string       $using  USING columns
75 75
      * @param string       $type   join type, i.e. OUTER JOIN, CROSS JOIN
Please login to merge, or discard this patch.
src/Query/SelectQuery.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Sets the selected fields to an aggregate function.
78 78
      *
79
-     * @param $function
79
+     * @param string $function
80 80
      * @param string $field
81 81
      *
82 82
      * @return self
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     /**
229 229
      * Gets the group by statement for the query.
230 230
      *
231
-     * @return GroupByStatement
231
+     * @return OrderStatement
232 232
      */
233 233
     public function getGroupBy()
234 234
     {
Please login to merge, or discard this patch.