Passed
Push — master ( e9998a...0b9b4d )
by Anthony
02:54
created
core/database/Querybuilder.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 		}
85 85
 
86 86
 		/**
87
-		 * @param $table
87
+		 * @param string $table
88 88
 		 * @return $this
89 89
 		 *
90 90
 		 * pour initialiser la les listes des tables ou il faudra aler chercher les données
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 		}
97 97
 
98 98
 		/**
99
-		 * @param $table
99
+		 * @param string $table
100 100
 		 *
101 101
 		 * pour initialiser la table dans laquelle on va insérer les données
102 102
 		 */
@@ -108,10 +108,10 @@  discard block
 block discarded – undo
108 108
 
109 109
 		/**
110 110
 		 * @param $champ
111
-		 * @param $cond
111
+		 * @param string $cond
112 112
 		 * @param $champ_test
113 113
 		 * @param string $closure
114
-		 * @param null $no_bind
114
+		 * @param boolean $no_bind
115 115
 		 * @return $this
116 116
 		 * pour intialiser la ou les clauses where d'une requete
117 117
 		 */
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 		}
131 131
 
132 132
 		/**
133
-		 * @param $order
133
+		 * @param string $order
134 134
 		 */
135 135
 		public function orderBy($order) {
136 136
 			$this->order_by = " ORDER BY ".$order." ";
Please login to merge, or discard this patch.