Completed
Pull Request — master (#451)
by Anton
13:12
created
src/_functions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
     /**
165 165
      * Return the value for callable
166 166
      *
167
-     * @param  callable|mixed $value
167
+     * @param  callable $value
168 168
      *
169 169
      * @return mixed
170 170
      */
Please login to merge, or discard this patch.
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 patch added patch discarded remove patch
@@ -45,6 +45,7 @@  discard block
 block discarded – undo
45 45
      * </code>
46 46
      *
47 47
      * @param  string[] ...$conditions optional the query restriction predicates
48
+     * @param string $conditions
48 49
      *
49 50
      * @return $this
50 51
      */
@@ -69,6 +70,7 @@  discard block
 block discarded – undo
69 70
      * </code>
70 71
      *
71 72
      * @param  string[] ...$conditions Optional the query restriction predicates
73
+     * @param string $conditions
72 74
      *
73 75
      * @return $this
74 76
      */
Please login to merge, or discard this patch.