Passed
Push — master ( 83ac9f...9c10e3 )
by Anthony
02:59
created
modules/bataille/app/controller/Marche.php 3 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -119,6 +119,7 @@
 block discarded – undo
119 119
 
120 120
 		/**
121 121
 		 * fonction qui place le trajet en retour
122
+		 * @param double $date_retour
122 123
 		 */
123 124
 		private function setTrajetRetour($date_retour) {
124 125
 			$dbc = App::getDb();
Please login to merge, or discard this patch.
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -88,25 +88,21 @@  discard block
 block discarded – undo
88 88
 				//on calcul la date d'arrivée du retour
89 89
 				if ($this->id_base_dest == Bataille::getIdBase()) {
90 90
 					$date_retour = Bataille::getDureeTrajet($this->id_base)+$this->date_arrivee;
91
-				}
92
-				else {
91
+				} else {
93 92
 					$date_retour = Bataille::getDureeTrajet($this->id_base_dest)+$this->date_arrivee;
94 93
 				}
95 94
 
96 95
 				//si le retour du trajet est également arrivé on finit le transport sinon on le place sur le retour
97 96
 				if ($date_retour < $today) {
98 97
 					$this->setTerminerTransport();
99
-				}
100
-				else {
98
+				} else {
101 99
 					$this->setTrajetRetour($date_retour);
102 100
 					$this->duree_restante_trajet = $date_retour-$today;
103 101
 					$set_array = true;
104 102
 				}
105
-			}
106
-			else if (($this->aller == 0) && (($this->date_arrivee-$today) <= 0)) {
103
+			} else if (($this->aller == 0) && (($this->date_arrivee-$today) <= 0)) {
107 104
 				$this->setTerminerTransport();
108
-			}
109
-			else {
105
+			} else {
110 106
 				$this->duree_restante_trajet = $this->date_arrivee-$today;
111 107
 				$set_array = true;
112 108
 			}
@@ -119,8 +115,7 @@  discard block
 block discarded – undo
119 115
 						"nom_base_dest" => $this->nom_base,
120 116
 						"aller" => $this->aller
121 117
 					];
122
-				}
123
-				else {
118
+				} else {
124 119
 					$marche = [
125 120
 						"id_marche_transport" => $this->id_marche_transport,
126 121
 						"date_arrivee" => $this->duree_restante_trajet,
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -82,15 +82,15 @@  discard block
 block discarded – undo
82 82
 			$today = Bataille::getToday();
83 83
 
84 84
 			//on test si déja arrivé à destination
85
-			if (($this->aller == 1) && (($this->date_arrivee-$today) <= 0)) {
85
+			if (($this->aller == 1) && (($this->date_arrivee - $today) <= 0)) {
86 86
 				$this->setLivrerRessource();
87 87
 
88 88
 				//on calcul la date d'arrivée du retour
89 89
 				if ($this->id_base_dest == Bataille::getIdBase()) {
90
-					$date_retour = Bataille::getDureeTrajet($this->id_base, Bataille::getParam("vitesse_marchand"))+$this->date_arrivee;
90
+					$date_retour = Bataille::getDureeTrajet($this->id_base, Bataille::getParam("vitesse_marchand")) + $this->date_arrivee;
91 91
 				}
92 92
 				else {
93
-					$date_retour = Bataille::getDureeTrajet($this->id_base_dest, Bataille::getParam("vitesse_marchand"))+$this->date_arrivee;
93
+					$date_retour = Bataille::getDureeTrajet($this->id_base_dest, Bataille::getParam("vitesse_marchand")) + $this->date_arrivee;
94 94
 				}
95 95
 
96 96
 				//si le retour du trajet est également arrivé on finit le transport sinon on le place sur le retour
@@ -99,15 +99,15 @@  discard block
 block discarded – undo
99 99
 				}
100 100
 				else {
101 101
 					$this->setTrajetRetour($date_retour);
102
-					$this->duree_restante_trajet = $date_retour-$today;
102
+					$this->duree_restante_trajet = $date_retour - $today;
103 103
 					$set_array = true;
104 104
 				}
105 105
 			}
106
-			else if (($this->aller == 0) && (($this->date_arrivee-$today) <= 0)) {
106
+			else if (($this->aller == 0) && (($this->date_arrivee - $today) <= 0)) {
107 107
 				$this->setTerminerTransport();
108 108
 			}
109 109
 			else {
110
-				$this->duree_restante_trajet = $this->date_arrivee-$today;
110
+				$this->duree_restante_trajet = $this->date_arrivee - $today;
111 111
 				$set_array = true;
112 112
 			}
113 113
 
@@ -159,11 +159,11 @@  discard block
 block discarded – undo
159 159
 			}
160 160
 
161 161
 			//on a le nombre de marchand dispo dans la base
162
-			$nombre_marchand_dispo = $nombre_max_marchand-$marchand_transport;
162
+			$nombre_marchand_dispo = $nombre_max_marchand - $marchand_transport;
163 163
 
164 164
 			//on calcul savoir si on en a assez pour transport toutes les ressoures
165 165
 			//il faut 1 marchand pour 1000 ressource
166
-			$nombre_marchand_trajet = ceil($all_ressource/1000);
166
+			$nombre_marchand_trajet = ceil($all_ressource / 1000);
167 167
 
168 168
 			//si on a assez de marchand on revoi true sinon false
169 169
 			if ($nombre_marchand_dispo >= $nombre_marchand_trajet) {
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 				}
245 245
 
246 246
 				//on check si assez marchand dans la base, si pas assez on return false
247
-				$nb_marchand = $this->getAssezMarchand($eau+$electricite+$fer+$fuel+$nourriture);
247
+				$nb_marchand = $this->getAssezMarchand($eau + $electricite + $fer + $fuel + $nourriture);
248 248
 
249 249
 				if ($nb_marchand === false) {
250 250
 					FlashMessage::setFlash("Vous n'avez pas assez de marchans disponibles pour effectuer ce trajet");
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
 
254 254
 				//sinon initialise le transport
255 255
 				//on recup la date d'arrivee dans la base de destintation
256
-				$date_arrivee = Bataille::getDureeTrajet($id_base_dest, Bataille::getParam("vitesse_marchand"))+Bataille::getToday();
256
+				$date_arrivee = Bataille::getDureeTrajet($id_base_dest, Bataille::getParam("vitesse_marchand")) + Bataille::getToday();
257 257
 
258 258
 				$ressource = [
259 259
 					"eau" => $eau,
Please login to merge, or discard this patch.
modules/bataille/app/controller/Ressource.php 2 patches
Braces   +17 added lines, -9 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
 			if ($id_base === null) {
19 19
 				$this->id_base = Bataille::getIdBase();
20
-			}
21
-			else {
20
+			} else {
22 21
 				$this->id_base = $id_base;
23 22
 			}
24 23
 
@@ -154,8 +153,7 @@  discard block
 block discarded – undo
154 153
 				$fer = $this->getFer()-$fer;
155 154
 				$fuel = $this->getFuel()-$fuel;
156 155
 				$nourriture = $this->getNourriture()-$nourriture;
157
-			}
158
-			else {
156
+			} else {
159 157
 				$eau = $this->getEau()+$eau;
160 158
 				$electricite = $this->getElectricite()+$electricite;
161 159
 				$fer = $this->getFer()+$fer;
@@ -164,11 +162,21 @@  discard block
 block discarded – undo
164 162
 
165 163
 				$stockage_max = Bataille::getBatiment()->getStockageEntrepot();
166 164
 
167
-				if ($eau > $stockage_max) $eau = $stockage_max;
168
-				if ($electricite > $stockage_max) $electricite = $stockage_max;
169
-				if ($fer > $stockage_max) $fer = $stockage_max;
170
-				if ($fuel > $stockage_max) $fuel = $stockage_max;
171
-				if ($nourriture > $stockage_max) $nourriture = $stockage_max;
165
+				if ($eau > $stockage_max) {
166
+					$eau = $stockage_max;
167
+				}
168
+				if ($electricite > $stockage_max) {
169
+					$electricite = $stockage_max;
170
+				}
171
+				if ($fer > $stockage_max) {
172
+					$fer = $stockage_max;
173
+				}
174
+				if ($fuel > $stockage_max) {
175
+					$fuel = $stockage_max;
176
+				}
177
+				if ($nourriture > $stockage_max) {
178
+					$nourriture = $stockage_max;
179
+				}
172 180
 			}
173 181
 
174 182
 
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 			$last_co = new \DateTime($last_co);
98 98
 			$last_co = $last_co->getTimestamp();
99 99
 
100
-			$diff_temps = $today-$last_co;
100
+			$diff_temps = $today - $last_co;
101 101
 
102 102
 			//si la derniere actualisation ou connexion est supérieur à 30 sec
103 103
 			if ($diff_temps > 180) {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 		private function setAddRessource($nom_ressource, $ressrouce, $diff_temps) {
118 118
 			$dbc = App::getDb();
119 119
 
120
-			$ressource = $ressrouce+(round((Bataille::getBatiment()->getProduction($nom_ressource, $this->id_base)/3600)*$diff_temps));
120
+			$ressource = $ressrouce + (round((Bataille::getBatiment()->getProduction($nom_ressource, $this->id_base) / 3600) * $diff_temps));
121 121
 			$stockage_max = Bataille::getBatiment()->getStockageEntrepot($this->id_base);
122 122
 
123 123
 			if ($ressource > $stockage_max) {
@@ -148,18 +148,18 @@  discard block
 block discarded – undo
148 148
 
149 149
 			//soit on enelve ou on ajoute
150 150
 			if ($signe == "-") {
151
-				$eau = $this->getEau()-$eau;
152
-				$electricite = $this->getElectricite()-$electricite;
153
-				$fer = $this->getFer()-$fer;
154
-				$fuel = $this->getFuel()-$fuel;
155
-				$nourriture = $this->getNourriture()-$nourriture;
151
+				$eau = $this->getEau() - $eau;
152
+				$electricite = $this->getElectricite() - $electricite;
153
+				$fer = $this->getFer() - $fer;
154
+				$fuel = $this->getFuel() - $fuel;
155
+				$nourriture = $this->getNourriture() - $nourriture;
156 156
 			}
157 157
 			else {
158
-				$eau = $this->getEau()+$eau;
159
-				$electricite = $this->getElectricite()+$electricite;
160
-				$fer = $this->getFer()+$fer;
161
-				$fuel = $this->getFuel()+$fuel;
162
-				$nourriture = $this->getNourriture()+$nourriture;
158
+				$eau = $this->getEau() + $eau;
159
+				$electricite = $this->getElectricite() + $electricite;
160
+				$fer = $this->getFer() + $fer;
161
+				$fuel = $this->getFuel() + $fuel;
162
+				$nourriture = $this->getNourriture() + $nourriture;
163 163
 
164 164
 				$stockage_max = Bataille::getBatiment()->getStockageEntrepot();
165 165
 
Please login to merge, or discard this patch.
modules/bataille/app/controller/marche/envoyer_ressources.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-	$marche =  new \modules\bataille\app\controller\Marche();
2
+	$marche = new \modules\bataille\app\controller\Marche();
3 3
 
4 4
 	$marche->setCommencerTransport($_POST['eau'], $_POST['electricite'], $_POST['fer'], $_POST['fuel'], $_POST['nourriture'], $_POST['posx'], $_POST['posy']);
5 5
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 	if (isset($_POST['admin'])) {
6 6
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."administrator/login", WEBROOT."administrator", 0);
7
-	}
8
-	else {
7
+	} else {
9 8
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."login", WEBROOT."index.php", 0);
10 9
 	}
11 10
\ No newline at end of file
Please login to merge, or discard this patch.
modules/bataille/app/controller/Map.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,8 +38,7 @@  discard block
 block discarded – undo
38 38
 					->from("_bataille_base")
39 39
 					->where("_bataille_base.ID_identite", "=", "identite.ID_identite", "", true)
40 40
 					->get();
41
-			}
42
-			else {
41
+			} else {
43 42
 				$query = $dbc->select("_bataille_base.nom_base")
44 43
 					->select("_bataille_base.points")
45 44
 					->select("_bataille_base.posx")
@@ -114,8 +113,7 @@  discard block
 block discarded – undo
114 113
 			if (Bataille::getNombreJoueur() <= 150) {
115 114
 				$posx = rand(0, 79);
116 115
 				$posy = rand(0, 75);
117
-			}
118
-			else {
116
+			} else {
119 117
 				$posx = rand(0, $this->largeur);
120 118
 				$posy = rand(0, $this->hauteur);
121 119
 			}
@@ -123,8 +121,7 @@  discard block
 block discarded – undo
123 121
 			//on test si il y a une base sur ces positions
124 122
 			if (Bataille::getBaseExistPosition($posx, $posy)) {
125 123
 				$this->getPositionNewBase();
126
-			}
127
-			else {
124
+			} else {
128 125
 				//on a une position de base inexistante donc on la return
129 126
 				return ["posx" => $posx, "posy" => $posy];
130 127
 			}
Please login to merge, or discard this patch.
modules/bataille/app/controller/initialise/test_connexion.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 	if (isset($_POST['admin'])) {
6 6
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."administrator/login", WEBROOT."administrator", 0);
7
-	}
8
-	else {
7
+	} else {
9 8
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."login", WEBROOT."index.php", 0);
10 9
 	}
11 10
\ No newline at end of file
Please login to merge, or discard this patch.
modules/bataille/app/controller/unites/recruter.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 	if (isset($_POST['admin'])) {
6 6
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."administrator/login", WEBROOT."administrator", 0);
7
-	}
8
-	else {
7
+	} else {
9 8
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."login", WEBROOT."index.php", 0);
10 9
 	}
11 10
\ No newline at end of file
Please login to merge, or discard this patch.
modules/bataille/app/controller/Unite.php 2 patches
Braces   +15 added lines, -10 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@  discard block
 block discarded – undo
19 19
 			$query = $dbc1->select("coef_niveau_unite")->from("configuration")->where("ID_configuration", "=", 1)->get();
20 20
 
21 21
 			if ((is_array($query)) && (count($query) == 1)) {
22
-				foreach ($query as $obj) $this->coef_unite = $obj->coef_niveau_unite;
22
+				foreach ($query as $obj) {
23
+					$this->coef_unite = $obj->coef_niveau_unite;
24
+				}
23 25
 			}
24 26
 		}
25 27
 		//-------------------------- END BUILDER ----------------------------------------------------------------------------//
@@ -53,7 +55,9 @@  discard block
 block discarded – undo
53 55
 				$coef = $this->coef_unite*$niveau;
54 56
 				$coef_ameliorer = $this->coef_unite*($niveau+1);
55 57
 
56
-				if ($niveau == 1) $coef = 1;
58
+				if ($niveau == 1) {
59
+					$coef = 1;
60
+				}
57 61
 
58 62
 				return [
59 63
 					"caracteristique" => [
@@ -76,8 +80,7 @@  discard block
 block discarded – undo
76 80
 					],
77 81
 					"temps_recrutement" => $temps_recrutement
78 82
 				];
79
-			}
80
-			else {
83
+			} else {
81 84
 				return [];
82 85
 			}
83 86
 		}
@@ -92,7 +95,9 @@  discard block
 block discarded – undo
92 95
 			$query = $dbc1->select("type_unite")->from("configuration")->where("ID_configuration", "=", 1)->get();
93 96
 
94 97
 			if ((is_array($query)) && (count($query) == 1)) {
95
-				foreach ($query as $obj) return explode(",", $obj->type_unite);
98
+				foreach ($query as $obj) {
99
+					return explode(",", $obj->type_unite);
100
+				}
96 101
 			}
97 102
 		}
98 103
 
@@ -128,8 +133,7 @@  discard block
 block discarded – undo
128 133
 				foreach ($query as $obj) {
129 134
 					if ($obj->date_fin-$today <= 0) {
130 135
 						$this->setTerminerRecrutement($obj->ID_recrutement);
131
-					}
132
-					else {
136
+					} else {
133 137
 						$recrutement[] = [
134 138
 							"nom" => $obj->nom,
135 139
 							"type" => $obj->type,
@@ -150,7 +154,9 @@  discard block
 block discarded – undo
150 154
 		 */
151 155
 		public function getAllUnites($id_base = null) {
152 156
 
153
-			if ($id_base == null) $id_base = Bataille::getIdBase();
157
+			if ($id_base == null) {
158
+				$id_base = Bataille::getIdBase();
159
+			}
154 160
 
155 161
 			$types = $this->getAllType();
156 162
 			$count_type = count($types);
@@ -240,8 +246,7 @@  discard block
 block discarded – undo
240 246
 			if (($eau["class"] || $electricite["class"] || $fer["class"] || $fuel["class"]) == "rouge" ) {
241 247
 				FlashMessage::setFlash("Pas assez de ressources pour recruter autant d'unités");
242 248
 				return false;
243
-			}
244
-			else {
249
+			} else {
245 250
 				//on retire les ressources
246 251
 				Bataille::getRessource()->setUpdateRessource($retirer_eau, $retirer_electricite, $retirer_fer, $retirer_fuel, 0, "-");
247 252
 
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -47,25 +47,25 @@  discard block
 block discarded – undo
47 47
 				foreach ($query as $obj) {
48 48
 					$base_carac = unserialize($obj->caracteristique);
49 49
 					$ressource = unserialize($obj->pour_recruter);
50
-					$temps_recrutement = DateHeure::Secondeenheure(round($obj->temps_recrutement-($obj->temps_recrutement*Bataille::getBatiment()->getNiveauBatiment("caserne")/100)));
50
+					$temps_recrutement = DateHeure::Secondeenheure(round($obj->temps_recrutement - ($obj->temps_recrutement * Bataille::getBatiment()->getNiveauBatiment("caserne") / 100)));
51 51
 				}
52 52
 
53
-				$coef = $this->coef_unite*$niveau;
53
+				$coef = $this->coef_unite * $niveau;
54 54
 
55 55
 				if ($niveau == 1) $coef = 1;
56 56
 
57 57
 				return [
58 58
 					"caracteristique" => [
59
-						"attaque" => round($base_carac["attaque"]*$coef),
60
-						"defense" => round($base_carac["defense"]*$coef),
61
-						"resistance" => round($base_carac["resistance"]*$coef),
59
+						"attaque" => round($base_carac["attaque"] * $coef),
60
+						"defense" => round($base_carac["defense"] * $coef),
61
+						"resistance" => round($base_carac["resistance"] * $coef),
62 62
 						"vitesse" => $base_carac["vitesse"]
63 63
 					],
64 64
 					"cout_recruter" => [
65
-						"eau" => $ressource["eau"]*$coef,
66
-						"electricite" => $ressource["electricite"]*$coef,
67
-						"fer" => $ressource["fer"]*$coef,
68
-						"fuel" => $ressource["fuel"]*$coef,
65
+						"eau" => $ressource["eau"] * $coef,
66
+						"electricite" => $ressource["electricite"] * $coef,
67
+						"fer" => $ressource["fer"] * $coef,
68
+						"fuel" => $ressource["fuel"] * $coef,
69 69
 					],
70 70
 					"temps_recrutement" => $temps_recrutement
71 71
 				];
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 			$unites = Bataille::getCentreRecherche()->getAllRechercheType($type);
100 100
 
101 101
 			//recupérer les caractéristiques de l'unité en question
102
-			for ($i=0 ; $i<count($unites) ; $i++) {
102
+			for ($i = 0; $i < count($unites); $i++) {
103 103
 				$unites[$i] += $this->getCaracteristiqueUnite($unites[$i]["recherche"], $unites[$i]["niveau"], $type);
104 104
 				$unites[$i] += ["type" => $type];
105 105
 			}
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 				$today = Bataille::getToday();
120 120
 
121 121
 				foreach ($query as $obj) {
122
-					if ($obj->date_fin-$today <= 0) {
122
+					if ($obj->date_fin - $today <= 0) {
123 123
 						$this->setTerminerRecrutement($obj->ID_recrutement);
124 124
 					}
125 125
 					else {
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 							"nom" => $obj->nom,
128 128
 							"type" => $obj->type,
129 129
 							"nombre" => $obj->nombre,
130
-							"date_fin_recrutement" => $obj->date_fin-$today,
130
+							"date_fin_recrutement" => $obj->date_fin - $today,
131 131
 							"id_recrutement" => $obj->ID_recrutement
132 132
 						];
133 133
 					}
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 			$count_type = count($types);
150 150
 			$unites = [];
151 151
 
152
-			for ($i=0 ; $i<$count_type ; $i++) {
152
+			for ($i = 0; $i < $count_type; $i++) {
153 153
 				$type_unite = $this->getAllUniteType($types[$i], $id_base);
154 154
 
155 155
 				$unites = array_merge($unites, $type_unite);
@@ -215,23 +215,23 @@  discard block
 block discarded – undo
215 215
 			if ((is_array($query)) && (count($query) == 1)) {
216 216
 				foreach ($query as $obj) {
217 217
 					$pour_recruter = unserialize($obj->pour_recruter);
218
-					$temps_recrutement = round($obj->temps_recrutement-($obj->temps_recrutement*Bataille::getBatiment()->getNiveauBatiment("caserne")/100));
218
+					$temps_recrutement = round($obj->temps_recrutement - ($obj->temps_recrutement * Bataille::getBatiment()->getNiveauBatiment("caserne") / 100));
219 219
 				}
220 220
 			}
221 221
 
222 222
 			//on test si on a assez de ressource pour recruter les unites
223 223
 			//on test si assez de ressources dans la base
224
-			$retirer_eau = $pour_recruter["eau"]*$nombre;
225
-			$retirer_electricite = $pour_recruter["electricite"]*$nombre;
226
-			$retirer_fer = $pour_recruter["fer"]*$nombre;
227
-			$retirer_fuel = $pour_recruter["fuel"]*$nombre;
224
+			$retirer_eau = $pour_recruter["eau"] * $nombre;
225
+			$retirer_electricite = $pour_recruter["electricite"] * $nombre;
226
+			$retirer_fer = $pour_recruter["fer"] * $nombre;
227
+			$retirer_fuel = $pour_recruter["fuel"] * $nombre;
228 228
 			$eau = Bataille::getTestAssezRessourceBase("eau", $retirer_eau);
229 229
 			$electricite = Bataille::getTestAssezRessourceBase("electricite", $retirer_electricite);
230 230
 			$fer = Bataille::getTestAssezRessourceBase("fer", $retirer_fer);
231 231
 			$fuel = Bataille::getTestAssezRessourceBase("fuel", $retirer_fuel);
232 232
 
233 233
 
234
-			if (($eau["class"] || $electricite["class"] || $fer["class"] || $fuel["class"]) == "rouge" ) {
234
+			if (($eau["class"] || $electricite["class"] || $fer["class"] || $fuel["class"]) == "rouge") {
235 235
 				FlashMessage::setFlash("Pas assez de ressources pour recruter autant d'unités");
236 236
 				return false;
237 237
 			}
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
 				//on retire les ressources
240 240
 				Bataille::getRessource()->setUpdateRessource($retirer_eau, $retirer_electricite, $retirer_fer, $retirer_fuel, 0, "-");
241 241
 
242
-				$date_fin = Bataille::getToday()+($temps_recrutement*$nombre);
242
+				$date_fin = Bataille::getToday() + ($temps_recrutement * $nombre);
243 243
 
244 244
 				$dbc->insert("nom", $nom)
245 245
 					->insert("type", $type)
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 					$type = $obj->type;
271 271
 				}
272 272
 
273
-				for ($i=0 ; $i<$nombre ; $i++) {
273
+				for ($i = 0; $i < $nombre; $i++) {
274 274
 					$dbc->insert("nom", $nom)
275 275
 						->insert("type", $type)
276 276
 						->insert("ID_base", Bataille::getIdBase())
Please login to merge, or discard this patch.
modules/bataille/app/controller/centre_recherche/rechercher.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 	if (isset($_POST['admin'])) {
6 6
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."administrator/login", WEBROOT."administrator", 0);
7
-	}
8
-	else {
7
+	} else {
9 8
 		\core\auth\Connexion::setLogin($pseudo, $mdp, WEBROOT."login", WEBROOT."index.php", 0);
10 9
 	}
11 10
\ No newline at end of file
Please login to merge, or discard this patch.
modules/bataille/app/controller/CentreRecherche.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
 		/**
92 92
 		 * @param $cout
93
-		 * @param $niveau_recherche
93
+		 * @param integer $niveau_recherche
94 94
 		 * @return array
95 95
 		 * fonction qui renvoi le cout d'une recherche
96 96
 		 */
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 		/**
107 107
 		 * @param $temps
108 108
 		 * @param int $niveau
109
-		 * @return floatfonction qui renvoi le temps qu'il faut pour effectuer une recherche
109
+		 * @return double qui renvoi le temps qu'il faut pour effectuer une recherche
110 110
 		 */
111 111
 		private function getTempsRecherche($temps, $niveau = 0) {
112 112
 			$pourcent = ($temps*Bataille::getBatiment()->getNiveauBatiment("centre_recherche")/100);
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -109,13 +109,13 @@  discard block
 block discarded – undo
109 109
 		 * @return floatfonction qui renvoi le temps qu'il faut pour effectuer une recherche
110 110
 		 */
111 111
 		private function getTempsRecherche($temps, $niveau = 0) {
112
-			$pourcent = ($temps*Bataille::getBatiment()->getNiveauBatiment("centre_recherche")/100);
112
+			$pourcent = ($temps * Bataille::getBatiment()->getNiveauBatiment("centre_recherche") / 100);
113 113
 
114 114
 			if ($niveau == 0) {
115
-				return round($temps-$pourcent);;
115
+				return round($temps - $pourcent); ;
116 116
 			}
117 117
 
118
-			return round(($temps * ($this->coef_centre * $niveau))-$pourcent);
118
+			return round(($temps * ($this->coef_centre * $niveau)) - $pourcent);
119 119
 		}
120 120
 
121 121
 		/**
@@ -160,14 +160,14 @@  discard block
 block discarded – undo
160 160
 					$this->recherche = $obj->recherche;
161 161
 					$this->type = $obj->type;
162 162
 
163
-					if ($obj->date_fin-$today <= 0) {
163
+					if ($obj->date_fin - $today <= 0) {
164 164
 						$this->setTerminerRecherche($obj->ID_recherche);
165 165
 					}
166 166
 					else {
167 167
 						$recherche = [
168 168
 							"recherche" => $obj->recherche,
169 169
 							"type" => $obj->type,
170
-							"date_fin_recherche" => $obj->date_fin-$today,
170
+							"date_fin_recherche" => $obj->date_fin - $today,
171 171
 							"id_recherche" => $obj->ID_recherche
172 172
 						];
173 173
 					}
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 			$fuel = Bataille::getTestAssezRessourceBase("fuel", $cout["fuel"]);
227 227
 
228 228
 
229
-			if (($eau["class"] || $electricite["class"] || $fer["class"] || $fuel["class"]) == "rouge" ) {
229
+			if (($eau["class"] || $electricite["class"] || $fer["class"] || $fuel["class"]) == "rouge") {
230 230
 				FlashMessage::setFlash("Pas assez de ressources pour effectuer cette recherche");
231 231
 				return false;
232 232
 			}
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 				//on retire les ressources
235 235
 				Bataille::getRessource()->setUpdateRessource($cout["eau"], $cout["electricite"], $cout["fer"], $cout["fuel"], 0, "-");
236 236
 
237
-				$date_fin = Bataille::getToday()+$temps_recherche;
237
+				$date_fin = Bataille::getToday() + $temps_recherche;
238 238
 
239 239
 				$dbc->insert("recherche", $recherche)
240 240
 					->insert("type", $type)
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 					->set();
261 261
 			}
262 262
 			else {
263
-				$dbc->update("niveau", $niveau_recherche+1)
263
+				$dbc->update("niveau", $niveau_recherche + 1)
264 264
 					->from("_bataille_centre_recherche")
265 265
 					->where("recherche", "=", $this->recherche, "AND")
266 266
 					->where("type", "=", $this->type, "AND")
Please login to merge, or discard this patch.
Braces   +7 added lines, -9 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@  discard block
 block discarded – undo
19 19
 			$query = $dbc1->select("coef_centre_recherche")->from("configuration")->where("ID_configuration", "=", 1)->get();
20 20
 
21 21
 			if ((is_array($query)) && (count($query) == 1)) {
22
-				foreach ($query as $obj) $this->coef_centre = $obj->coef_centre_recherche;
22
+				foreach ($query as $obj) {
23
+					$this->coef_centre = $obj->coef_centre_recherche;
24
+				}
23 25
 			}
24 26
 		}
25 27
 		//-------------------------- END BUILDER ----------------------------------------------------------------------------//
@@ -133,8 +135,7 @@  discard block
 block discarded – undo
133 135
 						if ($niveau > 0) {
134 136
 							$cout = $this->getCoutRecherche($cout, $niveau);
135 137
 							$temps_recherche = $this->getTempsRecherche($temps_recherche, $niveau);
136
-						}
137
-						else {
138
+						} else {
138 139
 							$niveau_recherche = 1;
139 140
 						}
140 141
 
@@ -175,8 +176,7 @@  discard block
 block discarded – undo
175 176
 						$this->setTerminerRecherche($obj->ID_recherche);
176 177
 
177 178
 						return false;
178
-					}
179
-					else {
179
+					} else {
180 180
 						$recherche = [
181 181
 							"recherche" => $obj->recherche,
182 182
 							"type" => $obj->type,
@@ -242,8 +242,7 @@  discard block
 block discarded – undo
242 242
 			if (($eau["class"] || $electricite["class"] || $fer["class"] || $fuel["class"]) == "rouge" ) {
243 243
 				FlashMessage::setFlash("Pas assez de ressources pour effectuer cette recherche");
244 244
 				return false;
245
-			}
246
-			else {
245
+			} else {
247 246
 				//on retire les ressources
248 247
 				Bataille::getRessource()->setUpdateRessource($cout["eau"], $cout["electricite"], $cout["fer"], $cout["fuel"], 0, "-");
249 248
 
@@ -271,8 +270,7 @@  discard block
 block discarded – undo
271 270
 					->insert("ID_base", Bataille::getIdBase())
272 271
 					->into("_bataille_centre_recherche")
273 272
 					->set();
274
-			}
275
-			else {
273
+			} else {
276 274
 				$dbc->update("niveau", $niveau_recherche+1)
277 275
 					->from("_bataille_centre_recherche")
278 276
 					->where("recherche", "=", $this->recherche, "AND")
Please login to merge, or discard this patch.