Completed
Push — master ( 467d47...6f2bb4 )
by Anton
14s
created
src/Crud/CrudInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      *
32 32
      * @param  mixed $primary
33 33
      *
34
-     * @return mixed
34
+     * @return \Bluz\Db\RowInterface
35 35
      */
36 36
     public function readOne($primary);
37 37
 
Please login to merge, or discard this patch.
src/Crud/Table.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
      *
174 174
      * @param  mixed $primary
175 175
      *
176
-     * @return integer
176
+     * @return boolean
177 177
      * @throws NotFoundException
178 178
      * @throws TableNotFoundException
179 179
      */
Please login to merge, or discard this patch.
src/Db/Query/Traits/Where.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      *      ;
45 45
      * </code>
46 46
      *
47
-     * @param  string[] $conditions optional the query restriction predicates
47
+     * @param  string $conditions optional the query restriction predicates
48 48
      *
49 49
      * @return $this
50 50
      */
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      *         ->andWhere('u.is_active = ?', 1);
69 69
      * </code>
70 70
      *
71
-     * @param  string[] $conditions Optional the query restriction predicates
71
+     * @param  string $conditions Optional the query restriction predicates
72 72
      *
73 73
      * @return $this
74 74
      */
Please login to merge, or discard this patch.