Passed
Push — master ( e0d6a2...2ec881 )
by Anton
05:25 queued 02:20
created
www/engine/System/Classes/Modules/Auth/Handler/Recover.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
 		protected function handle() {
14 14
 
15
-			if (Auth::initial()) Request::redirect(INSTALL_PATH . '/admin/register');
15
+			if (Auth::initial()) Request::redirect(INSTALL_PATH.'/admin/register');
16 16
 
17 17
 			return (new Auth\Action\Login)->handle();
18 18
 		}
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,9 @@
 block discarded – undo
12 12
 
13 13
 		protected function handle() {
14 14
 
15
-			if (Auth::initial()) Request::redirect(INSTALL_PATH . '/admin/register');
15
+			if (Auth::initial()) {
16
+				Request::redirect(INSTALL_PATH . '/admin/register');
17
+			}
16 18
 
17 19
 			return (new Auth\Action\Login)->handle();
18 20
 		}
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Collection/Menuitems.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
 		protected function init() {
14 14
 
15
-			$this->config->addParam('active', '', function (bool $active) {
15
+			$this->config->addParam('active', '', function(bool $active) {
16 16
 
17 17
 				return ($active ? "ent.active = 1" : '');
18 18
 			});
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Handler/Edit/Menuitem.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
 
31 31
 		protected function processEntityParent(Template\Block $parent) {
32 32
 
33
-			if (0 !== $this->parent->id) $parent->getBlock('browse')->link = $this->parent->link;
34
-
35
-			else { $parent->getBlock('browse')->disable(); $parent->getBlock('browse_disabled')->enable(); }
33
+			if (0 !== $this->parent->id) {
34
+				$parent->getBlock('browse')->link = $this->parent->link;
35
+			} else { $parent->getBlock('browse')->disable(); $parent->getBlock('browse_disabled')->enable(); }
36 36
 		}
37 37
 
38 38
 		# Add item additional data
Please login to merge, or discard this patch.
www/engine/Framework/Classes/Tag/Tag.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
 
118 118
 			$block = clone (self::$block ?? (self::$block = Template::createBlock(
119 119
 
120
-				'<$name${ for:attributes } $name$="$value$"{ / for:attributes }>' .
120
+				'<$name${ for:attributes } $name$="$value$"{ / for:attributes }>'.
121 121
 
122 122
 				'{ block:contents / }$contents${ ! block:closing }</$name$>{ / block:closing }'
123 123
 			)));
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,9 @@  discard block
 block discarded – undo
58 58
 
59 59
 		public function setAttributes(array $attributes) : Tag {
60 60
 
61
-			foreach ($attributes as $name => $value) if (is_scalar($value)) $this->setAttribute($name, $value);
61
+			foreach ($attributes as $name => $value) {
62
+				if (is_scalar($value)) $this->setAttribute($name, $value);
63
+			}
62 64
 
63 65
 			return $this;
64 66
 		}
@@ -71,7 +73,9 @@  discard block
 block discarded – undo
71 73
 
72 74
 		public function setContents($contents) : Tag {
73 75
 
74
-			if (Template::isBlock($contents) || is_scalar($contents) || is_null($contents)) $this->contents = $contents;
76
+			if (Template::isBlock($contents) || is_scalar($contents) || is_null($contents)) {
77
+				$this->contents = $contents;
78
+			}
75 79
 
76 80
 			return $this;
77 81
 		}
Please login to merge, or discard this patch.
www/engine/Framework/Classes/Template/Group.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,9 @@  discard block
 block discarded – undo
28 28
 
29 29
 		public function __clone() {
30 30
 
31
-			foreach ($this->items as $name => $item) $this->items[$name] = clone $item;
31
+			foreach ($this->items as $name => $item) {
32
+				$this->items[$name] = clone $item;
33
+			}
32 34
 		}
33 35
 
34 36
 		/**
@@ -52,7 +54,9 @@  discard block
 block discarded – undo
52 54
 
53 55
 		public function addItems(array $items) : Group {
54 56
 
55
- 			foreach ($items as $item) if ($item instanceof Block) $this->addItem($item);
57
+ 			foreach ($items as $item) {
58
+ 				if ($item instanceof Block) $this->addItem($item);
59
+ 			}
56 60
 
57 61
  			return $this;
58 62
  		}
@@ -111,7 +115,9 @@  discard block
 block discarded – undo
111 115
 
112 116
 			# Process items
113 117
 
114
-			foreach ($this->items as $block) $contents .= $block->getContents();
118
+			foreach ($this->items as $block) {
119
+				$contents .= $block->getContents();
120
+			}
115 121
 
116 122
 			# ------------------------
117 123
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Controller/Widget.php 1 patch
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,13 +29,19 @@  discard block
 block discarded – undo
29 29
 
30 30
 			# Validate name
31 31
 
32
-			if (false === ($name = Validate::templateComponentName($name))) return ['name', 'WIDGET_ERROR_NAME_INVALID'];
32
+			if (false === ($name = Validate::templateComponentName($name))) {
33
+				return ['name', 'WIDGET_ERROR_NAME_INVALID'];
34
+			}
33 35
 
34 36
 			# Check name exists
35 37
 
36
-			if (false === ($check_name = $this->widget->check($name, 'name'))) return 'WIDGET_ERROR_MODIFY';
38
+			if (false === ($check_name = $this->widget->check($name, 'name'))) {
39
+				return 'WIDGET_ERROR_MODIFY';
40
+			}
37 41
 
38
-			if ($check_name === 1) return ['name', 'WIDGET_ERROR_NAME_DUPLICATE'];
42
+			if ($check_name === 1) {
43
+				return ['name', 'WIDGET_ERROR_NAME_DUPLICATE'];
44
+			}
39 45
 
40 46
 			# Modify widget
41 47
 
@@ -48,7 +54,9 @@  discard block
 block discarded – undo
48 54
 
49 55
 			$modifier = ((0 === $this->widget->id) ? 'create' : 'edit');
50 56
 
51
-			if (!$this->widget->$modifier($data)) return 'WIDGET_ERROR_MODIFY';
57
+			if (!$this->widget->$modifier($data)) {
58
+				return 'WIDGET_ERROR_MODIFY';
59
+			}
52 60
 
53 61
 			# ------------------------
54 62
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Utils/Map.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
 			if (false === ($handler = self::parseString($route['handler'], REGEX_MAP_ITEM_HANDLER))) return;
69 69
 
70
-			self::$routes['/' . implode('/', $path)] = ('Addons\\' . $name . '\\' . implode('\\', $handler));
70
+			self::$routes['/'.implode('/', $path)] = ('Addons\\'.$name.'\\'.implode('\\', $handler));
71 71
 		}
72 72
 
73 73
 		# Parse item
Please login to merge, or discard this patch.
Braces   +15 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,7 +52,9 @@  discard block
 block discarded – undo
52 52
 
53 53
 			$parts = preg_split('/\//', $string, 0, PREG_SPLIT_NO_EMPTY);
54 54
 
55
-			foreach ($parts as $name) if (!preg_match($regex, $name)) return false;
55
+			foreach ($parts as $name) {
56
+				if (!preg_match($regex, $name)) return false;
57
+			}
56 58
 
57 59
 			# ------------------------
58 60
 
@@ -63,9 +65,13 @@  discard block
 block discarded – undo
63 65
 
64 66
 		private static function parseRoute(string $name, array $route) {
65 67
 
66
-			if (false === ($path = self::parseString($route['path'], REGEX_MAP_ITEM_PATH))) return;
68
+			if (false === ($path = self::parseString($route['path'], REGEX_MAP_ITEM_PATH))) {
69
+				return;
70
+			}
67 71
 
68
-			if (false === ($handler = self::parseString($route['handler'], REGEX_MAP_ITEM_HANDLER))) return;
72
+			if (false === ($handler = self::parseString($route['handler'], REGEX_MAP_ITEM_HANDLER))) {
73
+				return;
74
+			}
69 75
 
70 76
 			self::$routes['/' . implode('/', $path)] = ('Addons\\' . $name . '\\' . implode('\\', $handler));
71 77
 		}
@@ -74,14 +80,18 @@  discard block
 block discarded – undo
74 80
 
75 81
 		private static function parseItem(array $item) {
76 82
 
77
-			foreach ($item['routes'] as $route) self::parseRoute($item['name'], $route);
83
+			foreach ($item['routes'] as $route) {
84
+				self::parseRoute($item['name'], $route);
85
+			}
78 86
 		}
79 87
 
80 88
 		# Autoloader
81 89
 
82 90
 		public static function __autoload() {
83 91
 
84
-			foreach (Extend\Addons::items() as $item) self::parseItem($item);
92
+			foreach (Extend\Addons::items() as $item) {
93
+				self::parseItem($item);
94
+			}
85 95
 		}
86 96
 
87 97
 		# Get handler by url
Please login to merge, or discard this patch.
www/engine/System/Main.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,4 +31,6 @@
 block discarded – undo
31 31
 
32 32
 # Set error reporting
33 33
 
34
-if (DEBUG_MODE) error_reporting(E_ALL);
34
+if (DEBUG_MODE) {
35
+	error_reporting(E_ALL);
36
+}
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -9,32 +9,32 @@
 block discarded – undo
9 9
 
10 10
 # Define directories
11 11
 
12
-define('DIR_SYSTEM',                (dirname(__FILE__) . '/'));
12
+define('DIR_SYSTEM', (dirname(__FILE__).'/'));
13 13
 
14
-define('DIR_SYSTEM_CLASSES',        (DIR_SYSTEM . 'Classes/'));
15
-define('DIR_SYSTEM_DATA',           (DIR_SYSTEM . 'Data/'));
16
-define('DIR_SYSTEM_INCLUDES',       (DIR_SYSTEM . 'Includes/'));
17
-define('DIR_SYSTEM_LANGUAGES',      (DIR_SYSTEM . 'Languages/'));
18
-define('DIR_SYSTEM_TEMPLATES',      (DIR_SYSTEM . 'Templates/'));
14
+define('DIR_SYSTEM_CLASSES', (DIR_SYSTEM.'Classes/'));
15
+define('DIR_SYSTEM_DATA', (DIR_SYSTEM.'Data/'));
16
+define('DIR_SYSTEM_INCLUDES', (DIR_SYSTEM.'Includes/'));
17
+define('DIR_SYSTEM_LANGUAGES', (DIR_SYSTEM.'Languages/'));
18
+define('DIR_SYSTEM_TEMPLATES', (DIR_SYSTEM.'Templates/'));
19 19
 
20 20
 # Require classes
21 21
 
22
-require_once (DIR_SYSTEM . 'Exception.php');
22
+require_once (DIR_SYSTEM.'Exception.php');
23 23
 
24 24
 # Require configuration
25 25
 
26
-require_once (DIR_SYSTEM_INCLUDES . 'Constants.php');
27
-require_once (DIR_SYSTEM_INCLUDES . 'Config.php');
28
-require_once (DIR_SYSTEM_INCLUDES . 'Regex.php');
29
-require_once (DIR_SYSTEM_INCLUDES . 'Tables.php');
26
+require_once (DIR_SYSTEM_INCLUDES.'Constants.php');
27
+require_once (DIR_SYSTEM_INCLUDES.'Config.php');
28
+require_once (DIR_SYSTEM_INCLUDES.'Regex.php');
29
+require_once (DIR_SYSTEM_INCLUDES.'Tables.php');
30 30
 
31 31
 # Set environment constants
32 32
 
33
-define('HTTP_MOD_REWRITE',      ($_SERVER['HTTP_MOD_REWRITE'] === 'on'));
33
+define('HTTP_MOD_REWRITE', ($_SERVER['HTTP_MOD_REWRITE'] === 'on'));
34 34
 
35
-define('INSTALL_PATH',          rtrim($_SERVER['INSTALL_PATH'], '/'));
35
+define('INSTALL_PATH', rtrim($_SERVER['INSTALL_PATH'], '/'));
36 36
 
37
-define('DEBUG_MODE',            @file_exists(DIR_SYSTEM_DATA . '.debug'));
37
+define('DEBUG_MODE', @file_exists(DIR_SYSTEM_DATA.'.debug'));
38 38
 
39 39
 # Set error reporting
40 40
 
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.