Completed
Push — master ( f16e30...7218e0 )
by Márcio Lucas R.
03:50 queued 01:33
created
src/Phiber/ORM/Persistence/PhiberPersistence.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
      * Faz o update no banco do objeto especificado, se caso a opção execute_queries 
216 216
      * estiver habilitada
217 217
      * 
218
-     * @return mixed
218
+     * @return boolean
219 219
      * @internal param array $conditions
220 220
      * @internal param array $conjunctions
221 221
      */
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
      * Faz o delete no banco do objeto especificado, se caso a opção execute_queries 
269 269
      * estiver habilitada
270 270
      * 
271
-     * @return   mixed
271
+     * @return   boolean
272 272
      * @internal param $ <T> $obj
273 273
      * @internal param null $infos
274 274
      */
Please login to merge, or discard this patch.
src/Phiber/ORM/Queries/PhiberQueryWriter.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     /**
26 26
      * PhiberQueryWriter constructor.
27
-     * @param $method
27
+     * @param string $method
28 28
      * @param $infos
29 29
      */
30 30
     public function __construct($method, $infos)
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @return mixed
37
+     * @return string
38 38
      */
39 39
     function __toString()
40 40
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      * Faz a query de update de um registro no banco com os dados.
85 85
      * 
86 86
      * @param $infos
87
-     * @return mixed
87
+     * @return string
88 88
      * @throws PhiberException
89 89
      * @internal param $object
90 90
      * @internal param $id
Please login to merge, or discard this patch.
src/Phiber/ORM/Queries/Restrictions.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,6 @@
 block discarded – undo
129 129
      *  OBS: O ":condition_idade" é o responsável por depois fazer o binding do valor para
130 130
      *  evitar SQL Injection.
131 131
      * @param  string $column
132
-     * @param  string $param2
133 132
      * @return array
134 133
      */
135 134
     public function lessThen($column, $value)
Please login to merge, or discard this patch.
src/Phiber/Util/FuncoesReflections.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * 
35 35
      * @param  $object
36 36
      * @param  $nomeAtributo
37
-     * @return bool|string
37
+     * @return string|false
38 38
      * @throws Exception
39 39
      */
40 40
     public function pegaNomeAtributoEspecifico($object, $nomeAtributo)
Please login to merge, or discard this patch.
src/Phiber/Util/FuncoesString.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      * @param  string $string
101 101
      * @param  string $stringBusca
102 102
      * @param  string $substituicao
103
-     * @return mixed
103
+     * @return string
104 104
      */
105 105
     public function substituiOcorrenciasDeUmaString($string, $stringBusca, $substituicao)
106 106
     {
Please login to merge, or discard this patch.