Passed
Push — master ( c7e98d...e0d6a2 )
by Anton
04:56 queued 01:50
created
www/engine/System/Classes/Modules/Entitizer/Lister/Users.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,9 @@
 block discarded – undo
40 40
 
41 41
 			# Set remove button
42 42
 
43
-			if ($user->id === Auth::user()->id) $view->getBlock('remove')->class = 'disabled';
43
+			if ($user->id === Auth::user()->id) {
44
+				$view->getBlock('remove')->class = 'disabled';
45
+			}
44 46
 		}
45 47
 	}
46 48
 }
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Tools/Handler/Captcha.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
 			# Customize captcha
26 26
 
27
-			$font = (DIR_SYSTEM_DATA . CONFIG_CAPTCHA_FONT); $size = CONFIG_CAPTCHA_FONT_SIZE;
27
+			$font = (DIR_SYSTEM_DATA.CONFIG_CAPTCHA_FONT); $size = CONFIG_CAPTCHA_FONT_SIZE;
28 28
 
29 29
 			$indent = CONFIG_CAPTCHA_TEXT_INDENT; $step = CONFIG_CAPTCHA_TEXT_STEP;
30 30
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Tools/Handler/Sitemap.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
 			# Load sitemap
46 46
 
47
-			$file_name = (DIR_SYSTEM_DATA . 'Sitemap.xml');
47
+			$file_name = (DIR_SYSTEM_DATA.'Sitemap.xml');
48 48
 
49 49
 			$modified = Explorer::getModified($file_name);
50 50
 
Please login to merge, or discard this patch.
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,9 @@  discard block
 block discarded – undo
12 12
 
13 13
 			$selection = 'MAX(time_modified) as last_modified';
14 14
 
15
-			if (!(DB::select(TABLE_PAGES, $selection) && (DB::getLast()->rows === 1))) return 0;
15
+			if (!(DB::select(TABLE_PAGES, $selection) && (DB::getLast()->rows === 1))) {
16
+				return 0;
17
+			}
16 18
 
17 19
 			# ------------------------
18 20
 
@@ -27,11 +29,15 @@  discard block
 block discarded – undo
27 29
 
28 30
 			$condition = ['visibility' => VISIBILITY_PUBLISHED, 'access' => ACCESS_PUBLIC, 'locked' => 0];
29 31
 
30
-			if (!(DB::select(TABLE_PAGES, $selection, $condition, 'slug') && DB::getLast()->status)) return;
32
+			if (!(DB::select(TABLE_PAGES, $selection, $condition, 'slug') && DB::getLast()->status)) {
33
+				return;
34
+			}
31 35
 
32 36
 			# ------------------------
33 37
 
34
-			while (null !== ($data = DB::getLast()->getRow())) yield Entitizer::dataset(TABLE_PAGES, $data);
38
+			while (null !== ($data = DB::getLast()->getRow())) {
39
+				yield Entitizer::dataset(TABLE_PAGES, $data);
40
+			}
35 41
 		}
36 42
 
37 43
 		# Handle request
@@ -50,7 +56,9 @@  discard block
 block discarded – undo
50 56
 
51 57
 			if ((false !== $modified) && ($modified > $this->getLastModified())) {
52 58
 
53
-				if (false !== $sitemap->load($file_name)) return $sitemap;
59
+				if (false !== $sitemap->load($file_name)) {
60
+					return $sitemap;
61
+				}
54 62
 			}
55 63
 
56 64
 			# Fill sitemap
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Tools/Captcha.php 1 patch
Braces   +42 added lines, -13 removed lines patch added patch discarded remove patch
@@ -12,11 +12,19 @@  discard block
 block discarded – undo
12 12
 
13 13
 		private function allocateColor(array $color = null) {
14 14
 
15
-			if (null === $this->image) return false;
15
+			if (null === $this->image) {
16
+				return false;
17
+			}
16 18
 
17
-			if (null === $color) $color = [0, 0, 0]; else if (count($color) !== 3) return false;
19
+			if (null === $color) {
20
+				$color = [0, 0, 0];
21
+			} else if (count($color) !== 3) {
22
+				return false;
23
+			}
18 24
 
19
-			foreach (array_values($color) as $key => $value) $color[$key] = Number::forceInt($value, 0, 255);
25
+			foreach (array_values($color) as $key => $value) {
26
+				$color[$key] = Number::forceInt($value, 0, 255);
27
+			}
20 28
 
21 29
 			# ------------------------
22 30
 
@@ -27,7 +35,9 @@  discard block
 block discarded – undo
27 35
 
28 36
 		public function __construct(int $width, int $height, array $bg_color = null) {
29 37
 
30
-			if (false === ($image = imagecreatetruecolor($width, $height))) return;
38
+			if (false === ($image = imagecreatetruecolor($width, $height))) {
39
+				return;
40
+			}
31 41
 
32 42
 			$this->image = $image; $this->width = $width; $this->height = $height;
33 43
 
@@ -41,11 +51,17 @@  discard block
 block discarded – undo
41 51
 
42 52
 		public function text(string $font, int $size, int $indent, int $step, string $text, array $color = null) {
43 53
 
44
-			if (null === $this->image) return false;
54
+			if (null === $this->image) {
55
+				return false;
56
+			}
45 57
 
46
-			if (!Explorer::isFile($font)) return false;
58
+			if (!Explorer::isFile($font)) {
59
+				return false;
60
+			}
47 61
 
48
-			if (false === ($color = $this->allocateColor($color))) return false;
62
+			if (false === ($color = $this->allocateColor($color))) {
63
+				return false;
64
+			}
49 65
 
50 66
 			$base = (floor(($this->height - $size) / 2) + $size);
51 67
 
@@ -65,13 +81,22 @@  discard block
 block discarded – undo
65 81
 
66 82
 		public function noise(int $rate, array $color = null) {
67 83
 
68
-			if (null === $this->image) return false;
84
+			if (null === $this->image) {
85
+				return false;
86
+			}
69 87
 
70
-			if (false === ($color = $this->allocateColor($color))) return false;
88
+			if (false === ($color = $this->allocateColor($color))) {
89
+				return false;
90
+			}
71 91
 
72
-			for ($x = 0; $x < $this->width; $x++) for ($y = 0; $y < $this->height; $y++) {
92
+			for ($x = 0; $x < $this->width; $x++) {
93
+				for ($y = 0;
94
+			}
95
+			$y < $this->height; $y++) {
73 96
 
74
-				if (random_int(1, $rate) === 1) imagesetpixel($this->image, $x, $y, $color);
97
+				if (random_int(1, $rate) === 1) {
98
+					imagesetpixel($this->image, $x, $y, $color);
99
+				}
75 100
 			}
76 101
 
77 102
 			# ------------------------
@@ -83,9 +108,13 @@  discard block
 block discarded – undo
83 108
 
84 109
 		public function lines(int $count, array $color = null) {
85 110
 
86
-			if (null === $this->image) return false;
111
+			if (null === $this->image) {
112
+				return false;
113
+			}
87 114
 
88
-			if (false === ($color = $this->allocateColor($color))) return false;
115
+			if (false === ($color = $this->allocateColor($color))) {
116
+				return false;
117
+			}
89 118
 
90 119
 			for ($i = 0; $i < $count; $i++) {
91 120
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Tools/Sitemap.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
 		public function __construct() {
14 14
 
15
-			$urlset = '<?xml version="1.0" encoding="UTF-8" ?>' .
15
+			$urlset = '<?xml version="1.0" encoding="UTF-8" ?>'.
16 16
 
17 17
 					  '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" />';
18 18
 
Please login to merge, or discard this patch.
Braces   +21 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,14 +16,18 @@  discard block
 block discarded – undo
16 16
 
17 17
 					  '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" />';
18 18
 
19
-			if (false !== ($xml = XML::parse($urlset))) $this->xml = $xml;
19
+			if (false !== ($xml = XML::parse($urlset))) {
20
+				$this->xml = $xml;
21
+			}
20 22
 		}
21 23
 
22 24
 		# Load sitemap
23 25
 
24 26
 		public function load(string $file_name) {
25 27
 
26
-			if (false === ($xml = XML::load($file_name))) return false;
28
+			if (false === ($xml = XML::load($file_name))) {
29
+				return false;
30
+			}
27 31
 
28 32
 			$this->xml = $xml; $this->loaded = true;
29 33
 
@@ -36,9 +40,13 @@  discard block
 block discarded – undo
36 40
 
37 41
 		public function save(string $file_name) {
38 42
 
39
-			if ((null === $this->xml) || $this->loaded) return false;
43
+			if ((null === $this->xml) || $this->loaded) {
44
+				return false;
45
+			}
40 46
 
41
-			if (false === XML::save($file_name, $this->xml)) return false;
47
+			if (false === XML::save($file_name, $this->xml)) {
48
+				return false;
49
+			}
42 50
 
43 51
 			# ------------------------
44 52
 
@@ -49,9 +57,13 @@  discard block
 block discarded – undo
49 57
 
50 58
 		public function add(string $loc, string $lastmod = null, string $changefreq = null, float $priority = null) {
51 59
 
52
-			if ((null === $this->xml) || $this->loaded) return false;
60
+			if ((null === $this->xml) || $this->loaded) {
61
+				return false;
62
+			}
53 63
 
54
-			if (false === ($loc = Validate::url($loc))) return false;
64
+			if (false === ($loc = Validate::url($loc))) {
65
+				return false;
66
+			}
55 67
 
56 68
 			# Create url object
57 69
 
@@ -73,7 +85,9 @@  discard block
 block discarded – undo
73 85
 
74 86
 			# Set priority
75 87
 
76
-			if (null !== $priority) $url->addChild('priority', Number::forceFloat($priority, 0, 1, 1));
88
+			if (null !== $priority) {
89
+				$url->addChild('priority', Number::forceFloat($priority, 0, 1, 1));
90
+			}
77 91
 
78 92
 			# ------------------------
79 93
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Profile/Handler/Overview.php 1 patch
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,14 +32,18 @@
 block discarded – undo
32 32
 
33 33
 			foreach (['full_name', 'city'] as $name) {
34 34
 
35
-				if ('' === ($text = Auth::user()->$name)) $contents->getBlock($name)->disable();
36
-
37
-				else $contents->getBlock($name)->text = $text;
35
+				if ('' === ($text = Auth::user()->$name)) {
36
+					$contents->getBlock($name)->disable();
37
+				} else {
38
+					$contents->getBlock($name)->text = $text;
39
+				}
38 40
 			}
39 41
 
40 42
 			# Set country
41 43
 
42
-			if ('' === ($country = Auth::user()->country)) $contents->getBlock('country')->disable(); else {
44
+			if ('' === ($country = Auth::user()->country)) {
45
+				$contents->getBlock('country')->disable();
46
+			} else {
43 47
 
44 48
 				$contents->getBlock('country')->code = $country;
45 49
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Page.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,11 +55,11 @@
 block discarded – undo
55 55
 
56 56
 			if ($this->page->id !== 1) SEO::title($this->page->title); else $this->layout = 'Index';
57 57
 
58
-			SEO::description        ($this->page->description);
59
-			SEO::keywords           ($this->page->keywords);
60
-			SEO::robotsIndex        ($this->page->robots_index);
61
-			SEO::robotsFollow       ($this->page->robots_follow);
62
-			SEO::canonical          ($this->page->canonical);
58
+			SEO::description($this->page->description);
59
+			SEO::keywords($this->page->keywords);
60
+			SEO::robotsIndex($this->page->robots_index);
61
+			SEO::robotsFollow($this->page->robots_follow);
62
+			SEO::canonical($this->page->canonical);
63 63
 
64 64
 			# ------------------------
65 65
 
Please login to merge, or discard this patch.
Braces   +21 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,9 +16,11 @@  discard block
 block discarded – undo
16 16
 
17 17
 			# Set breadcrumbs
18 18
 
19
-			if (count($this->path) <= 1) $contents->getBlock('breadcrumbs')->disable();
20
-
21
-			else $contents->getBlock('breadcrumbs')->path = $this->path;
19
+			if (count($this->path) <= 1) {
20
+				$contents->getBlock('breadcrumbs')->disable();
21
+			} else {
22
+				$contents->getBlock('breadcrumbs')->path = $this->path;
23
+			}
22 24
 
23 25
 			# Set contents
24 26
 
@@ -41,19 +43,31 @@  discard block
 block discarded – undo
41 43
 
42 44
 			$slug = $this->url->getSlug();
43 45
 
44
-			if ('' !== $slug) $this->page->initBySlug($slug); else $this->page->init(1);
46
+			if ('' !== $slug) {
47
+				$this->page->initBySlug($slug);
48
+			} else {
49
+				$this->page->init(1);
50
+			}
45 51
 
46 52
 			# Display error if not found
47 53
 
48
-			if (0 === $this->page->id) return false;
54
+			if (0 === $this->page->id) {
55
+				return false;
56
+			}
49 57
 
50 58
 			# Get path
51 59
 
52
-			if (false !== ($path = $this->page->path())) $this->path = $path;
60
+			if (false !== ($path = $this->page->path())) {
61
+				$this->path = $path;
62
+			}
53 63
 
54 64
 			# Set data
55 65
 
56
-			if ($this->page->id !== 1) SEO::title($this->page->title); else $this->layout = 'Index';
66
+			if ($this->page->id !== 1) {
67
+				SEO::title($this->page->title);
68
+			} else {
69
+				$this->layout = 'Index';
70
+			}
57 71
 
58 72
 			SEO::description        ($this->page->description);
59 73
 			SEO::keywords           ($this->page->keywords);
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Settings/Settings.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,14 +12,18 @@
 block discarded – undo
12 12
 
13 13
 		public static function __autoload() {
14 14
 
15
-			if (null === self::$settings) self::$settings = new Settings\Utils\Dataset;
15
+			if (null === self::$settings) {
16
+				self::$settings = new Settings\Utils\Dataset;
17
+			}
16 18
 		}
17 19
 
18 20
 		# Load settings
19 21
 
20 22
 		public static function load() {
21 23
 
22
-			if (null === ($data = Schema::get('Settings')->load())) return false;
24
+			if (null === ($data = Schema::get('Settings')->load())) {
25
+				return false;
26
+			}
23 27
 
24 28
 			self::$settings->setArray($data); self::$loaded = true;
25 29
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Informer/Handler/Dashboard.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,11 +37,15 @@
 block discarded – undo
37 37
 
38 38
 			# Check if install file exists
39 39
 
40
-			if (Informer::checkInstallFile()) Messages::set('error', Language::get('DASHBOARD_MESSAGE_INSTALL_FILE'));
40
+			if (Informer::checkInstallFile()) {
41
+				Messages::set('error', Language::get('DASHBOARD_MESSAGE_INSTALL_FILE'));
42
+			}
41 43
 
42 44
 			# Check if configuration file is loaded
43 45
 
44
-			if (!Settings::loaded()) Messages::set('warning', Language::get('DASHBOARD_MESSAGE_SETTINGS_FILE'));
46
+			if (!Settings::loaded()) {
47
+				Messages::set('warning', Language::get('DASHBOARD_MESSAGE_SETTINGS_FILE'));
48
+			}
45 49
 
46 50
 			# ------------------------
47 51
 
Please login to merge, or discard this patch.