Failed Conditions
Pull Request — master (#353)
by Florian
04:09 queued 01:00
created
functions.php 1 patch
Braces   +20 added lines, -10 removed lines patch added patch discarded remove patch
@@ -177,7 +177,8 @@  discard block
 block discarded – undo
177 177
 //
178 178
 // Retruns max depth of array
179 179
 ########################################################################
180
-function get_depth($arr) {
180
+function get_depth($arr)
181
+{
181 182
 	$it = new RecursiveIteratorIterator(new RecursiveArrayIterator($arr));
182 183
 	$depth = 0;
183 184
 	foreach ($it as $v) {
@@ -195,12 +196,16 @@  discard block
 block discarded – undo
195 196
 //
196 197
 // Return all pokemon with data at a certain tree depth
197 198
 ########################################################################
198
-function get_tree_at_depth($trees, $depth, $max_pokemon, $currentDepth = 0) {
199
-	if ($depth == $currentDepth) { // Found depth
199
+function get_tree_at_depth($trees, $depth, $max_pokemon, $currentDepth = 0)
200
+{
201
+	if ($depth == $currentDepth) {
202
+// Found depth
200 203
 		return tree_remove_bellow($trees, $max_pokemon);
201
-	} else { // Go deeper
204
+	} else {
205
+// Go deeper
202 206
 		$arr = array();
203
-		foreach ($trees as $temp) { // Go into all trees
207
+		foreach ($trees as $temp) {
208
+// Go into all trees
204 209
 			$tree = $temp->evolutions;
205 210
 			$results = tree_remove_bellow(get_tree_at_depth($tree, $depth, $max_pokemon, $currentDepth + 1), $max_pokemon);
206 211
 			$arr = tree_check_array($results, $arr, $depth - $currentDepth == 1);
@@ -212,12 +217,16 @@  discard block
 block discarded – undo
212 217
 ########################################################################
213 218
 // used in get_tree_at_depth
214 219
 ########################################################################
215
-function tree_check_array($array_check, $array_add, $correct_arrow) {
220
+function tree_check_array($array_check, $array_add, $correct_arrow)
221
+{
216 222
 	$count = count($array_check);
217 223
 	$i = 0;
218
-	if (!is_null($array_check)) { // check if exists
219
-		foreach ($array_check as $res) { // Check if above, equal or bellow center
220
-			if ($count != 1 && $correct_arrow) { // only add arrow once
224
+	if (!is_null($array_check)) {
225
+// check if exists
226
+		foreach ($array_check as $res) {
227
+// Check if above, equal or bellow center
228
+			if ($count != 1 && $correct_arrow) {
229
+// only add arrow once
221 230
 				$num = $i / ($count - 1);
222 231
 				if ($num < 0.5) {
223 232
 					$res->array_sufix = "_up";
@@ -241,7 +250,8 @@  discard block
 block discarded – undo
241 250
 		return null;
242 251
 	}
243 252
 	$arr = array();
244
-	foreach ($tree as $item) { // Check if above, equal or bellow center
253
+	foreach ($tree as $item) {
254
+// Check if above, equal or bellow center
245 255
 		if ($item->id <= $max_pokemon) {
246 256
 			$arr[] = $item;
247 257
 		}
Please login to merge, or discard this patch.
pages/pokemon.page.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -323,8 +323,7 @@
 block discarded – undo
323 323
 									} elseif (isset($obj->info)) {
324 324
 										$infoName = 'INFO_' . $obj->info;
325 325
 										echo '<br>(' . $locales->$infoName . ')';
326
-									}
327
-									else {
326
+									} else {
328 327
 										echo '<br> </br>';
329 328
 									}
330 329
 									?>
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -316,11 +316,11 @@
 block discarded – undo
316 316
 								<img src="core/img/arrow<?=$obj->array_sufix?>.png" alt="Arrow" class="img">
317 317
 								<p class="pkmn-name">
318 318
 									<?php
319
-                                    if (isset($obj->candies)) {
320
-                                        echo $obj->candies . ' ' . $locales->POKEMON_CANDIES;
321
-                                    } else {
322
-                                        echo '? ' . $locales->POKEMON_CANDIES;
323
-                                    }
319
+									if (isset($obj->candies)) {
320
+										echo $obj->candies . ' ' . $locales->POKEMON_CANDIES;
321
+									} else {
322
+										echo '? ' . $locales->POKEMON_CANDIES;
323
+									}
324 324
 
325 325
 									if (isset($obj->item)) {
326 326
 										$itemName = 'ITEM_' . $obj->item;
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -317,17 +317,17 @@
 block discarded – undo
317 317
 								<p class="pkmn-name">
318 318
 									<?php
319 319
                                     if (isset($obj->candies)) {
320
-                                        echo $obj->candies . ' ' . $locales->POKEMON_CANDIES;
320
+                                        echo $obj->candies.' '.$locales->POKEMON_CANDIES;
321 321
                                     } else {
322
-                                        echo '? ' . $locales->POKEMON_CANDIES;
322
+                                        echo '? '.$locales->POKEMON_CANDIES;
323 323
                                     }
324 324
 
325 325
 									if (isset($obj->item)) {
326
-										$itemName = 'ITEM_' . $obj->item;
327
-										echo '<br>+ ' . $locales->$itemName;
326
+										$itemName = 'ITEM_'.$obj->item;
327
+										echo '<br>+ '.$locales->$itemName;
328 328
 									} elseif (isset($obj->info)) {
329
-										$infoName = 'INFO_' . $obj->info;
330
-										echo '<br>(' . $locales->$infoName . ')';
329
+										$infoName = 'INFO_'.$obj->info;
330
+										echo '<br>('.$locales->$infoName.')';
331 331
 									}
332 332
 									else {
333 333
 										echo '<br> </br>';
Please login to merge, or discard this patch.
core/cron/pokemon.cron.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 $rarityarray = array();
23 23
 foreach ($counts as $poke_id => $total) {
24 24
 	$rarity = $pokemons->pokemon->$poke_id->rarity;
25
-	isset($rarityarray[$rarity]) ? $rarityarray[$rarity]+=$total : $rarityarray[$rarity]=$total;
25
+	isset($rarityarray[$rarity]) ? $rarityarray[$rarity] += $total : $rarityarray[$rarity] = $total;
26 26
 }
27 27
 
28 28
 // Set amount of Pokemon for each rarity to 0 if there weren't any at that time
Please login to merge, or discard this patch.
core/js/trainer.graph.js.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 $trainer_lvl = [];
29 29
 # For all 3 teams
30 30
 for ($teamid = 1; $teamid <= 3; $teamid++) {
31
-    $data = $manager->getTrainerLevelCount($teamid);
31
+	$data = $manager->getTrainerLevelCount($teamid);
32 32
 	$trainer_lvl[$teamid] = $data;
33 33
 }
34 34
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 // Load Query Manager
21 21
 // ###################
22 22
 
23
-include_once __DIR__ . '/../process/queries/QueryManager.php';
23
+include_once __DIR__.'/../process/queries/QueryManager.php';
24 24
 $manager = QueryManager::current();
25 25
 
26 26
 # Chart Graph datas	 
Please login to merge, or discard this patch.
core/process/data.loader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 // Load Query Manager
70 70
 // ###################
71 71
 
72
-include_once __DIR__ . '/queries/QueryManager.php';
72
+include_once __DIR__.'/queries/QueryManager.php';
73 73
 $manager = QueryManager::current();
74 74
 
75 75
 
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 
269 269
 
270 270
 				// Gym owned and average points
271
-				$data	= $manager->getOwnedAndPoints($team_values->id);
271
+				$data = $manager->getOwnedAndPoints($team_values->id);
272 272
 
273 273
 				$teams->$team_key->gym_owned = $data->total;
274 274
 				$teams->$team_key->average = $data->average_points;
Please login to merge, or discard this patch.
install/tester.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 // Load Query Manager
4 4
 // ###################
5 5
 
6
-include_once __DIR__ . '/../core/process/queries/QueryManager.php';
6
+include_once __DIR__.'/../core/process/queries/QueryManager.php';
7 7
 
8 8
 
9 9
 ########################################################################
Please login to merge, or discard this patch.
core/process/queries/QueryManagerPostgresql.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/QueryManagerPostgresqlMonocleAlternate.php';
3
+include_once __DIR__.'/QueryManagerPostgresqlMonocleAlternate.php';
4 4
 
5 5
 
6 6
 abstract class QueryManagerPostgresql extends QueryManager {
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 		$this->db = pg_connect("host=".SYS_DB_HOST." port=".SYS_DB_PORT." dbname=".SYS_DB_NAME." user=".SYS_DB_USER." password=".SYS_DB_PSWD);
13 13
 
14 14
 		if ($this->db === false) {
15
-			header('Location:' . HOST_URL . 'offline.html');
15
+			header('Location:'.HOST_URL.'offline.html');
16 16
 			exit();
17 17
 		}
18 18
 	}
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,11 +3,13 @@  discard block
 block discarded – undo
3 3
 include_once __DIR__ . '/QueryManagerPostgresqlMonocleAlternate.php';
4 4
 
5 5
 
6
-abstract class QueryManagerPostgresql extends QueryManager {
6
+abstract class QueryManagerPostgresql extends QueryManager
7
+{
7 8
 
8 9
 	protected $db;
9 10
 
10
-	protected function __construct() {
11
+	protected function __construct()
12
+	{
11 13
 
12 14
 		$this->db = pg_connect("host=".SYS_DB_HOST." port=".SYS_DB_PORT." dbname=".SYS_DB_NAME." user=".SYS_DB_USER." password=".SYS_DB_PSWD);
13 15
 
@@ -17,7 +19,8 @@  discard block
 block discarded – undo
17 19
 		}
18 20
 	}
19 21
 
20
-	public function __destruct() {
22
+	public function __destruct()
23
+	{
21 24
 		pg_close($this->db);
22 25
 	}
23 26
 
@@ -25,7 +28,8 @@  discard block
 block discarded – undo
25 28
 	// Misc
26 29
 	/////////
27 30
 
28
-	public function getEcapedString($string) {
31
+	public function getEcapedString($string)
32
+	{
29 33
 		return pg_escape_string($this->db, $string);
30 34
 	}
31 35
 
Please login to merge, or discard this patch.
core/process/queries/QueryManagerMysql.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/QueryManagerMysqlRocketmap.php';
4
-include_once __DIR__ . '/QueryManagerMysqlMonocleAlternate.php';
3
+include_once __DIR__.'/QueryManagerMysqlRocketmap.php';
4
+include_once __DIR__.'/QueryManagerMysqlMonocleAlternate.php';
5 5
 
6 6
 
7 7
 abstract class QueryManagerMysql extends QueryManager {
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,11 +4,13 @@  discard block
 block discarded – undo
4 4
 include_once __DIR__ . '/QueryManagerMysqlMonocleAlternate.php';
5 5
 
6 6
 
7
-abstract class QueryManagerMysql extends QueryManager {
7
+abstract class QueryManagerMysql extends QueryManager
8
+{
8 9
 
9 10
 	protected $mysqli;
10 11
 
11
-	protected function __construct() {
12
+	protected function __construct()
13
+	{
12 14
 		$this->mysqli = new mysqli(SYS_DB_HOST, SYS_DB_USER, SYS_DB_PSWD, SYS_DB_NAME, SYS_DB_PORT);
13 15
 		if ($this->mysqli->connect_error != '') {
14 16
 			header('Location:'.HOST_URL.'offline.html');
@@ -22,7 +24,8 @@  discard block
 block discarded – undo
22 24
 		}
23 25
 	}
24 26
 
25
-	public function __destruct() {
27
+	public function __destruct()
28
+	{
26 29
 		$this->mysqli->close();
27 30
 	}
28 31
 
@@ -30,7 +33,8 @@  discard block
 block discarded – undo
30 33
 	// Misc
31 34
 	/////////
32 35
 
33
-	public function getEcapedString($string) {
36
+	public function getEcapedString($string)
37
+	{
34 38
 		return mysqli_real_escape_string($this->mysqli, $string);
35 39
 	}
36 40
 
Please login to merge, or discard this patch.
core/process/queries/QueryManager.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include_once __DIR__ . '/../../../config.php';
4
-include_once __DIR__ . '/QueryManagerMysql.php';
5
-include_once __DIR__ . '/QueryManagerPostgresql.php';
3
+include_once __DIR__.'/../../../config.php';
4
+include_once __DIR__.'/QueryManagerMysql.php';
5
+include_once __DIR__.'/QueryManagerPostgresql.php';
6 6
 
7 7
 abstract class QueryManager {
8 8
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
 		if (self::$current == null) {
17 17
 
18
-			$variables = realpath(dirname(__FILE__)) . '/../../json/variables.json';
18
+			$variables = realpath(dirname(__FILE__)).'/../../json/variables.json';
19 19
 			self::$config = json_decode(file_get_contents($variables));
20 20
 
21 21
 			include_once(SYS_PATH.'/core/process/timezone.loader.php');
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 		}
38 38
 		return self::$current;
39 39
 	}
40
-	private function __construct(){}
40
+	private function __construct() {}
41 41
 
42 42
 	// Misc
43 43
 	abstract public function getEcapedString($string);
Please login to merge, or discard this patch.
Braces   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,13 +4,15 @@  discard block
 block discarded – undo
4 4
 include_once __DIR__ . '/QueryManagerMysql.php';
5 5
 include_once __DIR__ . '/QueryManagerPostgresql.php';
6 6
 
7
-abstract class QueryManager {
7
+abstract class QueryManager
8
+{
8 9
 
9 10
 	protected static $time_offset;
10 11
 	protected static $config;
11 12
 
12 13
 	private static $current;
13
-	public static function current() {
14
+	public static function current()
15
+	{
14 16
 		global $time_offset;
15 17
 
16 18
 		if (self::$current == null) {
@@ -37,7 +39,9 @@  discard block
 block discarded – undo
37 39
 		}
38 40
 		return self::$current;
39 41
 	}
40
-	private function __construct(){}
42
+	private function __construct()
43
+	{
44
+}
41 45
 
42 46
 	// Misc
43 47
 	abstract public function getEcapedString($string);
Please login to merge, or discard this patch.