Passed
Push — master ( 2f56fd...c7e98d )
by Anton
05:11 queued 01:55
created
www/engine/System/Classes/Modules/Filemanager/Utils/Handler.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,7 +56,9 @@  discard block
 block discarded – undo
56 56
 
57 57
 			if (Request::post('action') === 'remove') {
58 58
 
59
-				if (!$this->entity->remove()) return $ajax->setError(Language::get(static::$message_error_remove));
59
+				if (!$this->entity->remove()) {
60
+					return $ajax->setError(Language::get(static::$message_error_remove));
61
+				}
60 62
 			}
61 63
 
62 64
 			# ------------------------
@@ -78,7 +80,9 @@  discard block
 block discarded – undo
78 80
 
79 81
 			# Handle ajax request
80 82
 
81
-			if (Request::isAjax()) return $this->handleAjax();
83
+			if (Request::isAjax()) {
84
+				return $this->handleAjax();
85
+			}
82 86
 
83 87
 			# Init entity
84 88
 
@@ -104,7 +108,9 @@  discard block
 block discarded – undo
104 108
 
105 109
 			# Display success message
106 110
 
107
-			if (false !== Request::get('submitted')) Popup::set('positive', Language::get(static::$message_success_rename));
111
+			if (false !== Request::get('submitted')) {
112
+				Popup::set('positive', Language::get(static::$message_success_rename));
113
+			}
108 114
 
109 115
 			# ------------------------
110 116
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Filemanager/Controller/Create.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,19 +29,25 @@
 block discarded – undo
29 29
 
30 30
 			# Validate name
31 31
 
32
-			if (false === ($name = Validate::fileName($name))) return ['name', 'FILEMANAGER_ERROR_NAME_INVALID'];
32
+			if (false === ($name = Validate::fileName($name))) {
33
+				return ['name', 'FILEMANAGER_ERROR_NAME_INVALID'];
34
+			}
33 35
 
34 36
 			# Check if item exists
35 37
 
36
-			if (@file_exists($this->parent->pathFull() . $name)) return ['name', 'FILEMANAGER_ERROR_EXISTS'];
38
+			if (@file_exists($this->parent->pathFull() . $name)) {
39
+				return ['name', 'FILEMANAGER_ERROR_EXISTS'];
40
+			}
37 41
 
38 42
 			# Create item
39 43
 
40 44
 			$entity = Filemanager::get($type, $this->parent);
41 45
 
42
-			if (!$entity->create($name)) return (($entity->type() === FILEMANAGER_TYPE_DIR) ?
46
+			if (!$entity->create($name)) {
47
+				return (($entity->type() === FILEMANAGER_TYPE_DIR) ?
43 48
 
44 49
 				'FILEMANAGER_ERROR_DIR_CREATE' : 'FILEMANAGER_ERROR_FILE_CREATE');
50
+			}
45 51
 
46 52
 			# ------------------------
47 53
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Filemanager/Controller/Rename.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,19 +29,25 @@
 block discarded – undo
29 29
 
30 30
 			# Validate name
31 31
 
32
-			if (false === ($name = Validate::fileName($name))) return ['name', 'FILEMANAGER_ERROR_NAME_INVALID'];
32
+			if (false === ($name = Validate::fileName($name))) {
33
+				return ['name', 'FILEMANAGER_ERROR_NAME_INVALID'];
34
+			}
33 35
 
34 36
 			# Check if item exists
35 37
 
36 38
 			if ((0 !== strcasecmp($this->entity->name(), $name)) &&
37 39
 
38
-				@file_exists($this->entity->parent()->pathFull() . $name)) return ['name', 'FILEMANAGER_ERROR_EXISTS'];
40
+				@file_exists($this->entity->parent()->pathFull() . $name)) {
41
+				return ['name', 'FILEMANAGER_ERROR_EXISTS'];
42
+			}
39 43
 
40 44
 			# Rename item
41 45
 
42
-			if (!$this->entity->rename($name)) return (($this->entity->type() === FILEMANAGER_TYPE_DIR) ?
46
+			if (!$this->entity->rename($name)) {
47
+				return (($this->entity->type() === FILEMANAGER_TYPE_DIR) ?
43 48
 
44 49
 				'FILEMANAGER_ERROR_DIR_RENAME' : 'FILEMANAGER_ERROR_FILE_RENAME');
50
+			}
45 51
 
46 52
 			# ------------------------
47 53
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/Schema/_Object.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
 			if ('' === static::$file_name) return null;
77 77
 
78
-			$file_name = (DIR_SYSTEM_DATA . static::$file_name);
78
+			$file_name = (DIR_SYSTEM_DATA.static::$file_name);
79 79
 
80 80
 			if (null === ($data = JSON::load($file_name))) return null;
81 81
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
 			if ('' === static::$file_name) return false;
94 94
 
95
-			$file_name = (DIR_SYSTEM_DATA . static::$file_name);
95
+			$file_name = (DIR_SYSTEM_DATA.static::$file_name);
96 96
 
97 97
 			if (null === ($data = $this->validate($data))) return false;
98 98
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
 			if ('' === static::$file_name) return false;
111 111
 
112
-			$file_name = (DIR_SYSTEM_DATA . static::$file_name);
112
+			$file_name = (DIR_SYSTEM_DATA.static::$file_name);
113 113
 
114 114
 			return (!Explorer::isFile($file_name) || Explorer::removeFile($file_name));
115 115
 		}
Please login to merge, or discard this patch.
Braces   +42 added lines, -14 removed lines patch added patch discarded remove patch
@@ -18,48 +18,62 @@  discard block
 block discarded – undo
18 18
 
19 19
 		protected function addArray(string $name) {
20 20
 
21
-			if ('' !== $name) return $this->properties[$name] = new _Array;
21
+			if ('' !== $name) {
22
+				return $this->properties[$name] = new _Array;
23
+			}
22 24
 		}
23 25
 
24 26
 		# Add boolean property
25 27
 
26 28
 		protected function addBoolean(string $name) {
27 29
 
28
-			if ('' !== $name) return $this->properties[$name] = new _Boolean;
30
+			if ('' !== $name) {
31
+				return $this->properties[$name] = new _Boolean;
32
+			}
29 33
 		}
30 34
 
31 35
 		# Add integer property
32 36
 
33 37
 		protected function addInteger(string $name) {
34 38
 
35
-			if ('' !== $name) return $this->properties[$name] = new _Integer;
39
+			if ('' !== $name) {
40
+				return $this->properties[$name] = new _Integer;
41
+			}
36 42
 		}
37 43
 
38 44
 		# Add object property
39 45
 
40 46
 		protected function addObject(string $name) {
41 47
 
42
-			if ('' !== $name) return $this->properties[$name] = new _Object;
48
+			if ('' !== $name) {
49
+				return $this->properties[$name] = new _Object;
50
+			}
43 51
 		}
44 52
 
45 53
 		# Add string property
46 54
 
47 55
 		protected function addString(string $name) {
48 56
 
49
-			if ('' !== $name) return $this->properties[$name] = new _String;
57
+			if ('' !== $name) {
58
+				return $this->properties[$name] = new _String;
59
+			}
50 60
 		}
51 61
 
52 62
 		# Validate data
53 63
 
54 64
 		public function validate($data) {
55 65
 
56
-			if (!is_array($data)) return null;
66
+			if (!is_array($data)) {
67
+				return null;
68
+			}
57 69
 
58 70
 			$result = [];
59 71
 
60 72
 			foreach ($this->properties as $name => $property) {
61 73
 
62
-				if (!isset($data[$name]) || (null === ($value = $property->validate($data[$name])))) return null;
74
+				if (!isset($data[$name]) || (null === ($value = $property->validate($data[$name])))) {
75
+					return null;
76
+				}
63 77
 
64 78
 				$result[$name] = $value;
65 79
 			}
@@ -73,13 +87,19 @@  discard block
 block discarded – undo
73 87
 
74 88
 		public function load() {
75 89
 
76
-			if ('' === static::$file_name) return null;
90
+			if ('' === static::$file_name) {
91
+				return null;
92
+			}
77 93
 
78 94
 			$file_name = (DIR_SYSTEM_DATA . static::$file_name);
79 95
 
80
-			if (null === ($data = JSON::load($file_name))) return null;
96
+			if (null === ($data = JSON::load($file_name))) {
97
+				return null;
98
+			}
81 99
 
82
-			if (null === ($data = $this->validate($data))) return null;
100
+			if (null === ($data = $this->validate($data))) {
101
+				return null;
102
+			}
83 103
 
84 104
 			# ------------------------
85 105
 
@@ -90,13 +110,19 @@  discard block
 block discarded – undo
90 110
 
91 111
 		public function save(array $data) {
92 112
 
93
-			if ('' === static::$file_name) return false;
113
+			if ('' === static::$file_name) {
114
+				return false;
115
+			}
94 116
 
95 117
 			$file_name = (DIR_SYSTEM_DATA . static::$file_name);
96 118
 
97
-			if (null === ($data = $this->validate($data))) return false;
119
+			if (null === ($data = $this->validate($data))) {
120
+				return false;
121
+			}
98 122
 
99
-			if (false === JSON::save($file_name, $data)) return false;
123
+			if (false === JSON::save($file_name, $data)) {
124
+				return false;
125
+			}
100 126
 
101 127
 			# ------------------------
102 128
 
@@ -107,7 +133,9 @@  discard block
 block discarded – undo
107 133
 
108 134
 		public function remove() {
109 135
 
110
-			if ('' === static::$file_name) return false;
136
+			if ('' === static::$file_name) {
137
+				return false;
138
+			}
111 139
 
112 140
 			$file_name = (DIR_SYSTEM_DATA . static::$file_name);
113 141
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/Uploader.php 1 patch
Braces   +42 added lines, -14 removed lines patch added patch discarded remove patch
@@ -10,19 +10,33 @@  discard block
 block discarded – undo
10 10
 
11 11
 		private static function translateError(int $error) {
12 12
 
13
-			if ($error === UPLOAD_ERR_INI_SIZE)         return 'UPLOADER_ERROR_INI_SIZE';
13
+			if ($error === UPLOAD_ERR_INI_SIZE) {
14
+				return 'UPLOADER_ERROR_INI_SIZE';
15
+			}
14 16
 
15
-			if ($error === UPLOAD_ERR_FORM_SIZE)        return 'UPLOADER_ERROR_FORM_SIZE';
17
+			if ($error === UPLOAD_ERR_FORM_SIZE) {
18
+				return 'UPLOADER_ERROR_FORM_SIZE';
19
+			}
16 20
 
17
-			if ($error === UPLOAD_ERR_PARTIAL)          return 'UPLOADER_ERROR_PARTIAL';
21
+			if ($error === UPLOAD_ERR_PARTIAL) {
22
+				return 'UPLOADER_ERROR_PARTIAL';
23
+			}
18 24
 
19
-			if ($error === UPLOAD_ERR_NO_FILE)          return 'UPLOADER_ERROR_NO_FILE';
25
+			if ($error === UPLOAD_ERR_NO_FILE) {
26
+				return 'UPLOADER_ERROR_NO_FILE';
27
+			}
20 28
 
21
-			if ($error === UPLOAD_ERR_NO_TMP_DIR)       return 'UPLOADER_ERROR_NO_TMP_DIR';
29
+			if ($error === UPLOAD_ERR_NO_TMP_DIR) {
30
+				return 'UPLOADER_ERROR_NO_TMP_DIR';
31
+			}
22 32
 
23
-			if ($error === UPLOAD_ERR_CANT_WRITE)       return 'UPLOADER_ERROR_CANT_WRITE';
33
+			if ($error === UPLOAD_ERR_CANT_WRITE) {
34
+				return 'UPLOADER_ERROR_CANT_WRITE';
35
+			}
24 36
 
25
-			if ($error === UPLOAD_ERR_EXTENSION)        return 'UPLOADER_ERROR_EXTENSION';
37
+			if ($error === UPLOAD_ERR_EXTENSION) {
38
+				return 'UPLOADER_ERROR_EXTENSION';
39
+			}
26 40
 
27 41
 			# ------------------------
28 42
 
@@ -33,15 +47,21 @@  discard block
 block discarded – undo
33 47
 
34 48
 		public static function save(string $name, string $dir_name) {
35 49
 
36
-			if ((false === ($file = Request::file($name))) || !is_uploaded_file($file['tmp_name'])) return false;
50
+			if ((false === ($file = Request::file($name))) || !is_uploaded_file($file['tmp_name'])) {
51
+				return false;
52
+			}
37 53
 
38 54
 			# Check for upload errors
39 55
 
40
-			if ($file['error'] !== UPLOAD_ERR_OK) return self::translateError($file['error']);
56
+			if ($file['error'] !== UPLOAD_ERR_OK) {
57
+				return self::translateError($file['error']);
58
+			}
41 59
 
42 60
 			# Check size
43 61
 
44
-			if ($file['size'] > CONFIG_UPLOADS_MAX_SIZE) return 'UPLOADER_ERROR_SIZE';
62
+			if ($file['size'] > CONFIG_UPLOADS_MAX_SIZE) {
63
+				return 'UPLOADER_ERROR_SIZE';
64
+			}
45 65
 
46 66
 			# Check file extension
47 67
 
@@ -49,21 +69,29 @@  discard block
 block discarded – undo
49 69
 
50 70
 			$extension = strtolower(Explorer::getExtension($file['name'], false));
51 71
 
52
-			if (in_array($extension, $extensions, true)) return 'UPLOADER_ERROR_TYPE';
72
+			if (in_array($extension, $extensions, true)) {
73
+				return 'UPLOADER_ERROR_TYPE';
74
+			}
53 75
 
54 76
 			# Check target directory
55 77
 
56
-			if (!Explorer::isDir($dir_name)) return 'UPLOADER_ERROR_DIR';
78
+			if (!Explorer::isDir($dir_name)) {
79
+				return 'UPLOADER_ERROR_DIR';
80
+			}
57 81
 
58 82
 			# Check target file
59 83
 
60 84
 			$file_name = ($dir_name . '/' . basename($file['name']));
61 85
 
62
-			if (Explorer::isDir($file_name) || Explorer::isFile($file_name)) return 'UPLOADER_ERROR_EXISTS';
86
+			if (Explorer::isDir($file_name) || Explorer::isFile($file_name)) {
87
+				return 'UPLOADER_ERROR_EXISTS';
88
+			}
63 89
 
64 90
 			# Save uploaded file
65 91
 
66
-			if (!@move_uploaded_file($file['tmp_name'], $file_name)) return 'UPLOADER_ERROR_SAVE';
92
+			if (!@move_uploaded_file($file['tmp_name'], $file_name)) {
93
+				return 'UPLOADER_ERROR_SAVE';
94
+			}
67 95
 
68 96
 			# ------------------------
69 97
 
Please login to merge, or discard this patch.
www/engine/Framework/Classes/Headers/Headers.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
 		public static function sendStatus(int $code) {
136 136
 
137
-			if (self::isStatusCode($code)) header($_SERVER['SERVER_PROTOCOL'] . ' ' . self::$status_codes[$code]);
137
+			if (self::isStatusCode($code)) header($_SERVER['SERVER_PROTOCOL'].' '.self::$status_codes[$code]);
138 138
 		}
139 139
 
140 140
 		/**
@@ -145,12 +145,12 @@  discard block
 block discarded – undo
145 145
 
146 146
 			if (self::isTextContentType($type)) {
147 147
 
148
-				return header('Content-type: ' . self::$content_types_text[$type] . '; charset=UTF-8');
148
+				return header('Content-type: '.self::$content_types_text[$type].'; charset=UTF-8');
149 149
 			}
150 150
 
151 151
 			if (self::isMediaContentType($type)) {
152 152
 
153
-				return header('Content-type: ' . self::$content_types_media[$type]);
153
+				return header('Content-type: '.self::$content_types_media[$type]);
154 154
 			}
155 155
 		}
156 156
 
@@ -162,15 +162,15 @@  discard block
 block discarded – undo
162 162
 
163 163
 			if (self::$cache_sent) return;
164 164
 
165
-			header('Expires: ' . gmdate('D, d M Y H:i:s', (REQUEST_TIME + $expires)) . ' GMT');
165
+			header('Expires: '.gmdate('D, d M Y H:i:s', (REQUEST_TIME + $expires)).' GMT');
166 166
 
167
-			header('Last-Modified: ' . gmdate('D, d M Y H:i:s', REQUEST_TIME) . ' GMT');
167
+			header('Last-Modified: '.gmdate('D, d M Y H:i:s', REQUEST_TIME).' GMT');
168 168
 
169 169
 			$limiter = ($public ? 'public' : 'private');
170 170
 
171
-			header('Cache-Control: ' . $limiter . ', max-age=' . $expires . ', pre-check=' . $expires);
171
+			header('Cache-Control: '.$limiter.', max-age='.$expires.', pre-check='.$expires);
172 172
 
173
-			header('Pragma: ' . $limiter);
173
+			header('Pragma: '.$limiter);
174 174
 
175 175
 			# ------------------------
176 176
 
@@ -185,9 +185,9 @@  discard block
 block discarded – undo
185 185
 
186 186
 			if (self::$cache_sent) return;
187 187
 
188
-			header('Expires: ' . gmdate('D, d M Y H:i:s', strtotime('-1 day')) . ' GMT');
188
+			header('Expires: '.gmdate('D, d M Y H:i:s', strtotime('-1 day')).' GMT');
189 189
 
190
-			header('Last-Modified: ' . gmdate('D, d M Y H:i:s', strtotime('-1 day')) . ' GMT');
190
+			header('Last-Modified: '.gmdate('D, d M Y H:i:s', strtotime('-1 day')).' GMT');
191 191
 
192 192
 			header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
193 193
 
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -134,7 +134,9 @@  discard block
 block discarded – undo
134 134
 
135 135
 		public static function sendStatus(int $code) {
136 136
 
137
-			if (self::isStatusCode($code)) header($_SERVER['SERVER_PROTOCOL'] . ' ' . self::$status_codes[$code]);
137
+			if (self::isStatusCode($code)) {
138
+				header($_SERVER['SERVER_PROTOCOL'] . ' ' . self::$status_codes[$code]);
139
+			}
138 140
 		}
139 141
 
140 142
 		/**
@@ -160,7 +162,9 @@  discard block
 block discarded – undo
160 162
 
161 163
 		public static function sendCache(int $expires, bool $public = false) {
162 164
 
163
-			if (self::$cache_sent) return;
165
+			if (self::$cache_sent) {
166
+				return;
167
+			}
164 168
 
165 169
 			header('Expires: ' . gmdate('D, d M Y H:i:s', (REQUEST_TIME + $expires)) . ' GMT');
166 170
 
@@ -183,7 +187,9 @@  discard block
 block discarded – undo
183 187
 
184 188
 		public static function sendNoCache() {
185 189
 
186
-			if (self::$cache_sent) return;
190
+			if (self::$cache_sent) {
191
+				return;
192
+			}
187 193
 
188 194
 			header('Expires: ' . gmdate('D, d M Y H:i:s', strtotime('-1 day')) . ' GMT');
189 195
 
Please login to merge, or discard this patch.
www/engine/Framework/Classes/Agent/Agent.php 1 patch
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,13 @@  discard block
 block discarded – undo
21 21
 
22 22
 		private static function search(array &$list) : bool {
23 23
 
24
-			if (empty($_SERVER['HTTP_USER_AGENT'])) return false;
24
+			if (empty($_SERVER['HTTP_USER_AGENT'])) {
25
+				return false;
26
+			}
25 27
 
26
-			foreach ($list as $item) if (false !== stripos($_SERVER['HTTP_USER_AGENT'], $item)) return true;
28
+			foreach ($list as $item) {
29
+				if (false !== stripos($_SERVER['HTTP_USER_AGENT'], $item)) return true;
30
+			}
27 31
 
28 32
 			# ------------------------
29 33
 
@@ -40,9 +44,13 @@  discard block
 block discarded – undo
40 44
 
41 45
 			$file_robots = (DIR_DATA . 'Agent/Robots.php');
42 46
 
43
-			if (is_array($mobiles = Explorer::include($file_mobiles))) self::$mobiles = $mobiles;
47
+			if (is_array($mobiles = Explorer::include($file_mobiles))) {
48
+				self::$mobiles = $mobiles;
49
+			}
44 50
 
45
-			if (is_array($robots = Explorer::include($file_robots))) self::$robots = $robots;
51
+			if (is_array($robots = Explorer::include($file_robots))) {
52
+				self::$robots = $robots;
53
+			}
46 54
 		}
47 55
 
48 56
 		/**
Please login to merge, or discard this patch.
www/engine/Framework/Classes/DB/DB.php 1 patch
Braces   +18 added lines, -6 removed lines patch added patch discarded remove patch
@@ -23,15 +23,23 @@  discard block
 block discarded – undo
23 23
 
24 24
 			// Ignore error to avoid warning when trying to connect to unavailable host
25 25
 
26
-			if (false === ($link = @mysqli_connect($server, $user, $password))) throw new Exception\DBConnect;
26
+			if (false === ($link = @mysqli_connect($server, $user, $password))) {
27
+				throw new Exception\DBConnect;
28
+			}
27 29
 
28 30
 			# Set encoding
29 31
 
30
-			if (!mysqli_query($link, "SET character_set_client = 'utf8'")) throw new Exception\DBCharset;
32
+			if (!mysqli_query($link, "SET character_set_client = 'utf8'")) {
33
+				throw new Exception\DBCharset;
34
+			}
31 35
 
32
-			if (!mysqli_query($link, "SET character_set_results = 'utf8'")) throw new Exception\DBCharset;
36
+			if (!mysqli_query($link, "SET character_set_results = 'utf8'")) {
37
+				throw new Exception\DBCharset;
38
+			}
33 39
 
34
-			if (!mysqli_query($link, "SET collation_connection = 'utf8_general_ci'")) throw new Exception\DBCharset;
40
+			if (!mysqli_query($link, "SET collation_connection = 'utf8_general_ci'")) {
41
+				throw new Exception\DBCharset;
42
+			}
35 43
 
36 44
 			# ------------------------
37 45
 
@@ -44,7 +52,9 @@  discard block
 block discarded – undo
44 52
 
45 53
 		public static function name(string $name) {
46 54
 
47
-			if (!mysqli_select_db(self::$link, $name)) throw new Exception\DBSelect;
55
+			if (!mysqli_select_db(self::$link, $name)) {
56
+				throw new Exception\DBSelect;
57
+			}
48 58
 		}
49 59
 
50 60
 		/**
@@ -55,7 +65,9 @@  discard block
 block discarded – undo
55 65
 
56 66
 		public static function send(string $query) {
57 67
 
58
-			if (null === self::$link) return (self::$last = false);
68
+			if (null === self::$link) {
69
+				return (self::$last = false);
70
+			}
59 71
 
60 72
 			$time = microtime(true); $result = mysqli_query(self::$link, $query); $time = (microtime(true) - $time);
61 73
 
Please login to merge, or discard this patch.
www/engine/Framework/Engine.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 
11 11
 		private static function parseContents(string $contents, Throwable $exc) : string {
12 12
 
13
-		   $contents = str_replace('$message$',             $exc->getMessage(),                 $contents);
13
+		   $contents = str_replace('$message$', $exc->getMessage(), $contents);
14 14
 
15
-		   $contents = str_replace('$file$',                $exc->getFile(),                    $contents);
15
+		   $contents = str_replace('$file$', $exc->getFile(), $contents);
16 16
 
17
-		   $contents = str_replace('$line$',                $exc->getLine(),                    $contents);
17
+		   $contents = str_replace('$line$', $exc->getLine(), $contents);
18 18
 
19
-		   $contents = str_replace('$trace$',               nl2br($exc->getTraceAsString()),    $contents);
19
+		   $contents = str_replace('$trace$', nl2br($exc->getTraceAsString()), $contents);
20 20
 
21 21
 		   # ------------------------
22 22
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
 			# Load template
56 56
 
57
-			$file_name = (DIR_TEMPLATES . 'Exception.tpl');
57
+			$file_name = (DIR_TEMPLATES.'Exception.tpl');
58 58
 
59 59
 			if (false === ($contents = @file_get_contents($file_name))) $output = nl2br($exc);
60 60
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
 			header('Pragma: no-cache');
72 72
 
73
-			header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
73
+			header($_SERVER['SERVER_PROTOCOL'].' 500 Internal Server Error', true, 500);
74 74
 
75 75
 			header('Content-type: text/html; charset=UTF-8');
76 76
 
Please login to merge, or discard this patch.
Braces   +23 added lines, -9 removed lines patch added patch discarded remove patch
@@ -29,17 +29,29 @@  discard block
 block discarded – undo
29 29
 
30 30
 		public static function getIP() : string {
31 31
 
32
-			if (!empty($_SERVER['HTTP_CLIENT_IP']))         return $_SERVER['HTTP_CLIENT_IP'];
32
+			if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
33
+				return $_SERVER['HTTP_CLIENT_IP'];
34
+			}
33 35
 
34
-			if (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))   return $_SERVER['HTTP_X_FORWARDED_FOR'];
36
+			if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
37
+				return $_SERVER['HTTP_X_FORWARDED_FOR'];
38
+			}
35 39
 
36
-			if (!empty($_SERVER['HTTP_X_FORWARDED']))       return $_SERVER['HTTP_X_FORWARDED'];
40
+			if (!empty($_SERVER['HTTP_X_FORWARDED'])) {
41
+				return $_SERVER['HTTP_X_FORWARDED'];
42
+			}
37 43
 
38
-			if (!empty($_SERVER['HTTP_FORWARDED_FOR']))     return $_SERVER['HTTP_FORWARDED_FOR'];
44
+			if (!empty($_SERVER['HTTP_FORWARDED_FOR'])) {
45
+				return $_SERVER['HTTP_FORWARDED_FOR'];
46
+			}
39 47
 
40
-			if (!empty($_SERVER['HTTP_FORWARDED']))         return $_SERVER['HTTP_FORWARDED'];
48
+			if (!empty($_SERVER['HTTP_FORWARDED'])) {
49
+				return $_SERVER['HTTP_FORWARDED'];
50
+			}
41 51
 
42
-			if (!empty($_SERVER['REMOTE_ADDR']))            return $_SERVER['REMOTE_ADDR'];
52
+			if (!empty($_SERVER['REMOTE_ADDR'])) {
53
+				return $_SERVER['REMOTE_ADDR'];
54
+			}
43 55
 
44 56
 			# ------------------------
45 57
 
@@ -56,9 +68,11 @@  discard block
 block discarded – undo
56 68
 
57 69
 			$file_name = (DIR_TEMPLATES . 'Exception.tpl');
58 70
 
59
-			if (false === ($contents = @file_get_contents($file_name))) $output = nl2br($exc);
60
-
61
-			else $output = self::parseContents($contents, $exc);
71
+			if (false === ($contents = @file_get_contents($file_name))) {
72
+				$output = nl2br($exc);
73
+			} else {
74
+				$output = self::parseContents($contents, $exc);
75
+			}
62 76
 
63 77
 			# Set headers
64 78
 
Please login to merge, or discard this patch.