Passed
Push — master ( ee99db...b62e1c )
by Anthony
03:15
created
core/functions/DateHeure.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,6 @@
 block discarded – undo
77 77
 		/**
78 78
 		 * affiche la date du jour au format jeudi 12 janvier
79 79
 		 * @param integer $date si NULL on prend la date du jour sinon on prend la date qui est mise
80
-		 * @param int $abreger si NOT NULL, on abrege la date, on enleve la semaine et on coupe le mois à 3 lettres
81 80
 		 * @return string
82 81
 		 */
83 82
 		public static function date_fr_texte($date = 0) {
Please login to merge, or discard this patch.
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.