Completed
Push — master ( 533b47...6c16e6 )
by Gabriel
02:01
created
src/Adapters/AbstractAdapter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -86,6 +86,9 @@
 block discarded – undo
86 86
 
87 87
     abstract public function quote($value);
88 88
 
89
+    /**
90
+     * @param string $data
91
+     */
89 92
     abstract public function cleanData($data);
90 93
 
91 94
     abstract public function connect(
Please login to merge, or discard this patch.
src/Query/AbstractQuery.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
     }
252 252
 
253 253
     /**
254
-     * @param $string
254
+     * @param string $string
255 255
      * @param array $values
256 256
      * @return $this
257 257
      */
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     }
394 394
 
395 395
     /**
396
-     * @param $name
396
+     * @param string $name
397 397
      * @return bool
398 398
      */
399 399
     public function hasPart($name)
Please login to merge, or discard this patch.
src/Query/Select.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
 
175 175
     /**
176
-     * @param $query
176
+     * @param AbstractQuery $query
177 177
      * @return Union
178 178
      */
179 179
     public function union($query)
Please login to merge, or discard this patch.
src/Connections/Connection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     /**
57 57
      * Create a new database connection instance.
58 58
      *
59
-     * @param  \PDO|\Closure $pdo
59
+     * @param  boolean $pdo
60 60
      * @param  string $database
61 61
      * @param  string $tablePrefix
62 62
      * @param  array $config
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     /**
194 194
      * Executes SQL query
195 195
      *
196
-     * @param mixed|AbstractQuery $query
196
+     * @param AbstractQuery $query
197 197
      * @return Result
198 198
      */
199 199
     public function execute($query)
Please login to merge, or discard this patch.
src/Metadata/Cache.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @param $metadata
59
+     * @param Manager $metadata
60 60
      * @return $this
61 61
      */
62 62
     public function setMetadata($metadata)
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-     * @param $cacheId
70
+     * @param string $cacheId
71 71
      * @return mixed
72 72
      */
73 73
     public function get($cacheId)
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     /**
83 83
      * @param $cacheId
84
-     * @return mixed
84
+     * @return boolean|null
85 85
      */
86 86
     public function reload($cacheId)
87 87
     {
Please login to merge, or discard this patch.