Test Failed
Branch master (9e5052)
by Gabriel
11:37
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/Connections/Connection.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * Create a new database connection instance.
59 59
      *
60
-     * @param  \PDO|\Closure $pdo
60
+     * @param  boolean $pdo
61 61
      * @param  string $database
62 62
      * @param  string $tablePrefix
63 63
      * @param  array $config
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     }
140 140
 
141 141
     /**
142
-     * @param $name
142
+     * @param string $name
143 143
      * @return AbstractAdapter
144 144
      */
145 145
     public function newAdapter($name)
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * Executes SQL query
249 249
      *
250
-     * @param mixed|AbstractQuery $query
250
+     * @param AbstractQuery $query
251 251
      * @return Result
252 252
      */
253 253
     public function execute($query)
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.