Passed
Push — master ( c9802b...2c3917 )
by Anthony
05:58 queued 02:59
created
core/admin/droitsacces/GestionDroitAcces.class.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
 
26 26
 
27
-        //-------------------------- CONSTRUCTEUR ----------------------------------------------------------------------------//
27
+		//-------------------------- CONSTRUCTEUR ----------------------------------------------------------------------------//
28 28
 		public function __construct($id_liste_droit_acces = null) {
29 29
 			$dbc = App::getDb();
30 30
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 			return $this->pseudo;
109 109
 		}
110 110
 		public function getNbUser() {
111
-		    return $this->nb_user;
111
+			return $this->nb_user;
112 112
 		}
113 113
 
114 114
 		/**
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 		 * @param $id_liste_droit_acces
117 117
 		 */
118 118
 		public function getListeDroitAccesDetailDroit($id_liste_droit_acces = null) {
119
-		    $dbc = \core\App::getDb();
119
+			$dbc = \core\App::getDb();
120 120
 
121 121
 			if ($id_liste_droit_acces == null) $id_liste_droit_acces = $this->id_liste_droit_acces;
122 122
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 		 * @param $id_liste_droit_acces
161 161
 		 */
162 162
 		public function getListeDroitAccesDetailPage($id_liste_droit_acces = null) {
163
-		    $dbc = \core\App::getDb();
163
+			$dbc = \core\App::getDb();
164 164
 
165 165
 			if ($id_liste_droit_acces == null) $id_liste_droit_acces = $this->id_liste_droit_acces;
166 166
 
@@ -179,11 +179,11 @@  discard block
 block discarded – undo
179 179
 				$this->setListeDroitAccesDetailPage($id_page, $titre_page);
180 180
 			}
181 181
 		}
182
-        //-------------------------- FIN GETTER ----------------------------------------------------------------------------//
182
+		//-------------------------- FIN GETTER ----------------------------------------------------------------------------//
183 183
 
184 184
 
185 185
 
186
-        //-------------------------- SETTER ----------------------------------------------------------------------------//
186
+		//-------------------------- SETTER ----------------------------------------------------------------------------//
187 187
 		private function setListeDroitAcces($id_liste_droit_acces, $nom_liste, $nb_droit_acces, $nb_droit_acces_page, $nb_user) {
188 188
 			$this->id_liste_droit_acces = $id_liste_droit_acces;
189 189
 			$this->nom_liste = $nom_liste;
Please login to merge, or discard this patch.
core/App.class.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@
 block discarded – undo
1 1
 <?php
2
-    namespace core;
2
+	namespace core;
3 3
 
4
-    class App {
5
-    	private static $database;
4
+	class App {
5
+		private static $database;
6 6
 		private static $erreur;
7 7
     
8 8
     
9
-        //-------------------------- CONSTRUCTEUR ----------------------------------------------------------------------------//
10
-        public function __construct() {
9
+		//-------------------------- CONSTRUCTEUR ----------------------------------------------------------------------------//
10
+		public function __construct() {
11 11
             
12
-        }
13
-        //-------------------------- FIN CONSTRUCTEUR ----------------------------------------------------------------------------//
12
+		}
13
+		//-------------------------- FIN CONSTRUCTEUR ----------------------------------------------------------------------------//
14 14
     
15 15
     
16 16
     
17
-        //-------------------------- GETTER ----------------------------------------------------------------------------//
17
+		//-------------------------- GETTER ----------------------------------------------------------------------------//
18 18
 		public static function getErreur() {
19
-		    return self::$erreur;
19
+			return self::$erreur;
20 20
 		}
21 21
 
22 22
 		/**
Please login to merge, or discard this patch.