Passed
Push — master ( d5a1bb...855a75 )
by Anthony
02:58
created
core/admin/contenus/GestionContenus.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -71,6 +71,14 @@  discard block
 block discarded – undo
71 71
 
72 72
 
73 73
 		//-------------------------- SETTER ----------------------------------------------------------------------------//
74
+
75
+		/**
76
+		 * @param string $url
77
+		 * @param string $err_balise_title
78
+		 * @param string $err_url
79
+		 * @param string $err_meta_description
80
+		 * @param string $err_titre_page
81
+		 */
74 82
 		private function setErreurContenus($balise_title, $url, $meta_description, $titre_page, $parent, $contenu, $err_balise_title, $err_url, $err_meta_description, $err_titre_page) {
75 83
 			$_SESSION['balise_title'] = $balise_title;
76 84
 			$_SESSION['url'] = $url;
@@ -265,6 +273,10 @@  discard block
 block discarded – undo
265 273
 			}
266 274
 		}
267 275
 
276
+		/**
277
+		 * @param string $id
278
+		 * @param integer $affiche
279
+		 */
268 280
 		private function setModifierLienNavigation($id, $id_page, $parent, $affiche) {
269 281
 			if ($parent != "") {
270 282
 				$nav = new Navigation();
Please login to merge, or discard this patch.
core/modules/GestionModule.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -66,9 +66,6 @@
 block discarded – undo
66 66
 		}
67 67
 
68 68
 		/**
69
-		 * @param null $systeme
70
-		 * recupere la listes des modules ajouter par un autre admin
71
-		 * fonction utilisée uniquement dans la config
72 69
 		 */
73 70
 		public function getListeModule() {
74 71
 			$dbc = App::getDb();
Please login to merge, or discard this patch.
core/database/Querybuilder.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -119,6 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
 		/**
121 121
 		 * @param string $order
122
+		 * @param string $type
122 123
 		 */
123 124
 		public function orderBy($order, $type = null) {
124 125
 			if ($type === null) $type = "ASC";
@@ -128,6 +129,10 @@  discard block
 block discarded – undo
128 129
 			return $this;
129 130
 		}
130 131
 
132
+		/**
133
+		 * @param integer $debut
134
+		 * @param integer $fin
135
+		 */
131 136
 		public function limit($debut, $fin) {
132 137
 			$this->limit = " LIMIT ".$debut.", ".$fin." ";
133 138
 
Please login to merge, or discard this patch.