Passed
Push — master ( 42329e...41cb2f )
by Emmanuel
01:52
created
src/Anonymizer/DB.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
     /**
50 50
      * Get Doctrine Connection
51
-     * @return Doctrine\DBAL\Connection
51
+     * @return \Doctrine\DBAL\Connection
52 52
      */
53 53
     public function getConn()
54 54
     {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      * @param  array  $data           Array of fields => value to update the table
164 164
      * @param  string $primaryKey
165 165
      * @param  string $primaryKeyVal  Primary Key's Value
166
-     * @return string                 Doctrine DBAL QueryBuilder
166
+     * @return QueryBuilder                 Doctrine DBAL QueryBuilder
167 167
      */
168 168
     private function prepareUpdate(array $data, string $primaryKey, $primaryKeyVal)
169 169
     {
@@ -247,6 +247,9 @@  discard block
 block discarded – undo
247 247
         return $sql;
248 248
     }
249 249
 
250
+    /**
251
+     * @return string
252
+     */
250 253
     private function getCondition(string $field, string $type)
251 254
     {
252 255
         $type = strtolower($type);
Please login to merge, or discard this patch.