Passed
Push — master ( ee99db...b62e1c )
by Anthony
03:15
created
core/database/Querybuilder.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 		}
81 81
 
82 82
 		/**
83
-		 * @param $table
83
+		 * @param string $table
84 84
 		 * @return $this
85 85
 		 *
86 86
 		 * pour initialiser la les listes des tables ou il faudra aler chercher les données
@@ -103,10 +103,10 @@  discard block
 block discarded – undo
103 103
 		}
104 104
 
105 105
 		/**
106
-		 * @param $champ
107
-		 * @param $cond
106
+		 * @param string $champ
107
+		 * @param string $cond
108 108
 		 * @param $champ_test
109
-		 * @param null $closure
109
+		 * @param string $closure
110 110
 		 * @return $this
111 111
 		 *
112 112
 		 * pour intialiser la ou les clauses where d'une requete
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 		}
124 124
 
125 125
 		/**
126
-		 * @param $order
126
+		 * @param string $order
127 127
 		 */
128 128
 		public function orderBy($order) {
129 129
 			$this->order_by = " ORDER BY ".$order;
Please login to merge, or discard this patch.