Completed
Push — master ( 8d3d9a...6e0700 )
by Todd
02:16
created
src/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
     /**
178 178
      * Get the defaultOrder.
179 179
      *
180
-     * @return array Returns the defaultOrder.
180
+     * @return string[] Returns the defaultOrder.
181 181
      */
182 182
     public function getDefaultOrder() {
183 183
         return $this->defaultOrder;
Please login to merge, or discard this patch.
src/MySqlDb.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -594,7 +594,7 @@
 block discarded – undo
594 594
     /**
595 595
      * Build a sql update statement.
596 596
      *
597
-     * @param string|Literal $tableName The name of the table to update.
597
+     * @param string $tableName The name of the table to update.
598 598
      * @param array $set An array of columns to set.
599 599
      * @param array $where The where filter.
600 600
      * @param array $options Additional options for the query.
Please login to merge, or discard this patch.
src/DatasetTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * Retrieve an external iterator
46 46
      * @link http://php.net/manual/en/iteratoraggregate.getiterator.php
47
-     * @return Traversable Returns a generator of all rows.
47
+     * @return \ArrayIterator Returns a generator of all rows.
48 48
      */
49 49
     public function getIterator() {
50 50
         return new \ArrayIterator($this->getData());
Please login to merge, or discard this patch.
src/TableQuery.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -158,6 +158,9 @@
 block discarded – undo
158 158
         return $this;
159 159
     }
160 160
 
161
+    /**
162
+     * @param string $name
163
+     */
161 164
     protected function getOption($name, $default = null) {
162 165
         return isset($this->options[$name]) ? $this->options[$name] : $default;
163 166
     }
Please login to merge, or discard this patch.