Passed
Branch 0.4.0 (434eea)
by Anton
04:47
created
www/engine/System/Classes/Modules/Entitizer/Controller/Widget.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,9 +29,13 @@  discard block
 block discarded – undo
29 29
 
30 30
 			# Check name exists
31 31
 
32
-			if (false === ($check_name = $this->widget->check($name, 'name'))) return 'WIDGET_ERROR_MODIFY';
32
+			if (false === ($check_name = $this->widget->check($name, 'name'))) {
33
+				return 'WIDGET_ERROR_MODIFY';
34
+			}
33 35
 
34
-			if ($check_name === 1) return ['name', 'WIDGET_ERROR_NAME_DUPLICATE'];
36
+			if ($check_name === 1) {
37
+				return ['name', 'WIDGET_ERROR_NAME_DUPLICATE'];
38
+			}
35 39
 
36 40
 			# Modify widget
37 41
 
@@ -44,7 +48,9 @@  discard block
 block discarded – undo
44 48
 
45 49
 			$modifier = ((0 === $this->widget->id) ? 'create' : 'edit');
46 50
 
47
-			if (!$this->widget->$modifier($data)) return 'WIDGET_ERROR_MODIFY';
51
+			if (!$this->widget->$modifier($data)) {
52
+				return 'WIDGET_ERROR_MODIFY';
53
+			}
48 54
 
49 55
 			# ------------------------
50 56
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Controller/Variable.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,9 +29,13 @@  discard block
 block discarded – undo
29 29
 
30 30
 			# Check name exists
31 31
 
32
-			if (false === ($check_name = $this->variable->check($name, 'name'))) return 'VARIABLE_ERROR_MODIFY';
32
+			if (false === ($check_name = $this->variable->check($name, 'name'))) {
33
+				return 'VARIABLE_ERROR_MODIFY';
34
+			}
33 35
 
34
-			if ($check_name === 1) return ['name', 'VARIABLE_ERROR_NAME_DUPLICATE'];
36
+			if ($check_name === 1) {
37
+				return ['name', 'VARIABLE_ERROR_NAME_DUPLICATE'];
38
+			}
35 39
 
36 40
 			# Modify variable
37 41
 
@@ -43,7 +47,9 @@  discard block
 block discarded – undo
43 47
 
44 48
 			$modifier = ((0 === $this->variable->id) ? 'create' : 'edit');
45 49
 
46
-			if (!$this->variable->$modifier($data)) return 'VARIABLE_ERROR_MODIFY';
50
+			if (!$this->variable->$modifier($data)) {
51
+				return 'VARIABLE_ERROR_MODIFY';
52
+			}
47 53
 
48 54
 			# ------------------------
49 55
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Entity/Page.php 4 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -64,13 +64,13 @@  discard block
 block discarded – undo
64 64
 
65 65
 			$query = ("SELECT " . implode(', ', $selection) .", rel.ancestor as parent_id ") .
66 66
 
67
-			         ("FROM " . static::$table . " ent ") .
67
+					 ("FROM " . static::$table . " ent ") .
68 68
 
69
-			         ("LEFT JOIN " . static::$table_relations . " rel ON rel.descendant = ent.id AND rel.depth = 1 ") .
69
+					 ("LEFT JOIN " . static::$table_relations . " rel ON rel.descendant = ent.id AND rel.depth = 1 ") .
70 70
 
71
-			         ("WHERE ent.visibility = " . VISIBILITY_PUBLISHED . " AND ent.access <= " . Auth::user()->rank . " AND ") .
71
+					 ("WHERE ent.visibility = " . VISIBILITY_PUBLISHED . " AND ent.access <= " . Auth::user()->rank . " AND ") .
72 72
 
73
-			         ("ent.locked = 0 AND ent.slug = '" . addslashes($slug) . "' LIMIT 1");
73
+					 ("ent.locked = 0 AND ent.slug = '" . addslashes($slug) . "' LIMIT 1");
74 74
 
75 75
 			# Select entity from DB
76 76
 
@@ -91,17 +91,17 @@  discard block
 block discarded – undo
91 91
 
92 92
 			$query = ("UPDATE " . static::$table . " ent JOIN (") .
93 93
 
94
-			         ("SELECT rel.descendant as id, GROUP_CONCAT(ens.name ORDER BY rls.depth DESC SEPARATOR '/') slug ") .
94
+					 ("SELECT rel.descendant as id, GROUP_CONCAT(ens.name ORDER BY rls.depth DESC SEPARATOR '/') slug ") .
95 95
 
96
-			         ("FROM " . static::$table_relations . " rel ") .
96
+					 ("FROM " . static::$table_relations . " rel ") .
97 97
 
98
-			         ("JOIN " . static::$table_relations . " rls ON rls.descendant = rel.descendant ") .
98
+					 ("JOIN " . static::$table_relations . " rls ON rls.descendant = rel.descendant ") .
99 99
 
100
-			         ("JOIN " . static::$table . " ens ON ens.id = rls.ancestor ") .
100
+					 ("JOIN " . static::$table . " ens ON ens.id = rls.ancestor ") .
101 101
 
102
-			         ("WHERE rel.ancestor = " . $this->id . " GROUP BY rel.descendant") .
102
+					 ("WHERE rel.ancestor = " . $this->id . " GROUP BY rel.descendant") .
103 103
 
104
-			         (") slg ON slg.id = ent.id SET ent.locked = 1, ent.slug = slg.slug");
104
+					 (") slg ON slg.id = ent.id SET ent.locked = 1, ent.slug = slg.slug");
105 105
 
106 106
 			if (!(DB::send($query) && DB::last()->status)) return false;
107 107
 
@@ -109,15 +109,15 @@  discard block
 block discarded – undo
109 109
 
110 110
 			$query = ("UPDATE " . static::$table . " ent JOIN (") .
111 111
 
112
-			         ("SELECT rel.descendant as id FROM " . static::$table_relations . " rel ") .
112
+					 ("SELECT rel.descendant as id FROM " . static::$table_relations . " rel ") .
113 113
 
114
-			         ("JOIN " . static::$table . " enc ON enc.id = rel.descendant AND enc.locked = 1 ") .
114
+					 ("JOIN " . static::$table . " enc ON enc.id = rel.descendant AND enc.locked = 1 ") .
115 115
 
116
-			         ("LEFT JOIN " . static::$table . " end ON end.id != enc.id AND end.slug = enc.slug ") .
116
+					 ("LEFT JOIN " . static::$table . " end ON end.id != enc.id AND end.slug = enc.slug ") .
117 117
 
118
-			         ("WHERE end.id IS NULL GROUP BY rel.descendant") .
118
+					 ("WHERE end.id IS NULL GROUP BY rel.descendant") .
119 119
 
120
-			         (") chk ON chk.id = ent.id SET ent.locked = 0");
120
+					 (") chk ON chk.id = ent.id SET ent.locked = 0");
121 121
 
122 122
 			if (!(DB::send($query) && DB::last()->status)) return false;
123 123
 
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Modules\Entitizer\Entity {
4 4
 
5
-	use Modules\Auth, Modules\Entitizer, DB;
5
+	use Modules\Auth;
6
+	use Modules\Entitizer;
7
+	use DB;
6 8
 
7 9
 	class Page extends Entitizer\Utils\Entity {
8 10
 
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -22,19 +22,19 @@  discard block
 block discarded – undo
22 22
 
23 23
 			$selection = array_keys($this->definition->params());
24 24
 
25
-			foreach ($selection as $key => $field) $selection[$key] = ('ent.' . $field);
25
+			foreach ($selection as $key => $field) $selection[$key] = ('ent.'.$field);
26 26
 
27 27
 			# Process query
28 28
 
29
-			$query = ("SELECT " . implode(', ', $selection) .", rel.ancestor as parent_id ") .
29
+			$query = ("SELECT ".implode(', ', $selection).", rel.ancestor as parent_id ").
30 30
 
31
-			         ("FROM " . static::$table . " ent ") .
31
+			         ("FROM ".static::$table." ent ").
32 32
 
33
-			         ("LEFT JOIN " . static::$table_relations . " rel ON rel.descendant = ent.id AND rel.depth = 1 ") .
33
+			         ("LEFT JOIN ".static::$table_relations." rel ON rel.descendant = ent.id AND rel.depth = 1 ").
34 34
 
35
-			         ("WHERE ent.visibility = " . VISIBILITY_PUBLISHED . " AND ent.access <= " . Auth::user()->rank . " AND ") .
35
+			         ("WHERE ent.visibility = ".VISIBILITY_PUBLISHED." AND ent.access <= ".Auth::user()->rank." AND ").
36 36
 
37
-			         ("ent.locked = 0 AND ent.slug = '" . addslashes($slug) . "' LIMIT 1");
37
+			         ("ent.locked = 0 AND ent.slug = '".addslashes($slug)."' LIMIT 1");
38 38
 
39 39
 			# Select entity from DB
40 40
 
@@ -53,17 +53,17 @@  discard block
 block discarded – undo
53 53
 
54 54
 			# Send lock/update request
55 55
 
56
-			$query = ("UPDATE " . static::$table . " ent JOIN (") .
56
+			$query = ("UPDATE ".static::$table." ent JOIN (").
57 57
 
58
-			         ("SELECT rel.descendant as id, GROUP_CONCAT(ens.name ORDER BY rls.depth DESC SEPARATOR '/') slug ") .
58
+			         ("SELECT rel.descendant as id, GROUP_CONCAT(ens.name ORDER BY rls.depth DESC SEPARATOR '/') slug ").
59 59
 
60
-			         ("FROM " . static::$table_relations . " rel ") .
60
+			         ("FROM ".static::$table_relations." rel ").
61 61
 
62
-			         ("JOIN " . static::$table_relations . " rls ON rls.descendant = rel.descendant ") .
62
+			         ("JOIN ".static::$table_relations." rls ON rls.descendant = rel.descendant ").
63 63
 
64
-			         ("JOIN " . static::$table . " ens ON ens.id = rls.ancestor ") .
64
+			         ("JOIN ".static::$table." ens ON ens.id = rls.ancestor ").
65 65
 
66
-			         ("WHERE rel.ancestor = " . $this->id . " GROUP BY rel.descendant") .
66
+			         ("WHERE rel.ancestor = ".$this->id." GROUP BY rel.descendant").
67 67
 
68 68
 			         (") slg ON slg.id = ent.id SET ent.locked = 1, ent.slug = slg.slug");
69 69
 
@@ -71,15 +71,15 @@  discard block
 block discarded – undo
71 71
 
72 72
 			# Send unlock request
73 73
 
74
-			$query = ("UPDATE " . static::$table . " ent JOIN (") .
74
+			$query = ("UPDATE ".static::$table." ent JOIN (").
75 75
 
76
-			         ("SELECT rel.descendant as id FROM " . static::$table_relations . " rel ") .
76
+			         ("SELECT rel.descendant as id FROM ".static::$table_relations." rel ").
77 77
 
78
-			         ("JOIN " . static::$table . " enc ON enc.id = rel.descendant AND enc.locked = 1 ") .
78
+			         ("JOIN ".static::$table." enc ON enc.id = rel.descendant AND enc.locked = 1 ").
79 79
 
80
-			         ("LEFT JOIN " . static::$table . " end ON end.id != enc.id AND end.slug = enc.slug ") .
80
+			         ("LEFT JOIN ".static::$table." end ON end.id != enc.id AND end.slug = enc.slug ").
81 81
 
82
-			         ("WHERE end.id IS NULL GROUP BY rel.descendant") .
82
+			         ("WHERE end.id IS NULL GROUP BY rel.descendant").
83 83
 
84 84
 			         (") chk ON chk.id = ent.id SET ent.locked = 0");
85 85
 
Please login to merge, or discard this patch.
Braces   +27 added lines, -9 removed lines patch added patch discarded remove patch
@@ -12,7 +12,9 @@  discard block
 block discarded – undo
12 12
 
13 13
 		public function initBySlug(string $slug) {
14 14
 
15
-			if (0 !== $this->id) return false;
15
+			if (0 !== $this->id) {
16
+				return false;
17
+			}
16 18
 
17 19
 			# Process value
18 20
 
@@ -22,7 +24,9 @@  discard block
 block discarded – undo
22 24
 
23 25
 			$selection = array_keys($this->definition->params());
24 26
 
25
-			foreach ($selection as $key => $field) $selection[$key] = ('ent.' . $field);
27
+			foreach ($selection as $key => $field) {
28
+				$selection[$key] = ('ent.' . $field);
29
+			}
26 30
 
27 31
 			# Process query
28 32
 
@@ -38,7 +42,9 @@  discard block
 block discarded – undo
38 42
 
39 43
 			# Select entity from DB
40 44
 
41
-			if (!(DB::send($query) && (DB::getLast()->rows === 1))) return false;
45
+			if (!(DB::send($query) && (DB::getLast()->rows === 1))) {
46
+				return false;
47
+			}
42 48
 
43 49
 			# ------------------------
44 50
 
@@ -49,7 +55,9 @@  discard block
 block discarded – undo
49 55
 
50 56
 		public function updateSlugs() {
51 57
 
52
-			if (0 === $this->id) return false;
58
+			if (0 === $this->id) {
59
+				return false;
60
+			}
53 61
 
54 62
 			# Send lock/update request
55 63
 
@@ -67,7 +75,9 @@  discard block
 block discarded – undo
67 75
 
68 76
 			         (") slg ON slg.id = ent.id SET ent.locked = 1, ent.slug = slg.slug");
69 77
 
70
-			if (!(DB::send($query) && DB::getLast()->status)) return false;
78
+			if (!(DB::send($query) && DB::getLast()->status)) {
79
+				return false;
80
+			}
71 81
 
72 82
 			# Send unlock request
73 83
 
@@ -83,7 +93,9 @@  discard block
 block discarded – undo
83 93
 
84 94
 			         (") chk ON chk.id = ent.id SET ent.locked = 0");
85 95
 
86
-			if (!(DB::send($query) && DB::getLast()->status)) return false;
96
+			if (!(DB::send($query) && DB::getLast()->status)) {
97
+				return false;
98
+			}
87 99
 
88 100
 			# ------------------------
89 101
 
@@ -94,7 +106,9 @@  discard block
 block discarded – undo
94 106
 
95 107
 		public function create(array $data) {
96 108
 
97
-			if (!parent::create($data)) return false;
109
+			if (!parent::create($data)) {
110
+				return false;
111
+			}
98 112
 
99 113
 			$this->updateSlugs();
100 114
 
@@ -107,7 +121,9 @@  discard block
 block discarded – undo
107 121
 
108 122
 		public function edit(array $data) {
109 123
 
110
-			if (!parent::edit($data)) return false;
124
+			if (!parent::edit($data)) {
125
+				return false;
126
+			}
111 127
 
112 128
 			$this->updateSlugs();
113 129
 
@@ -120,7 +136,9 @@  discard block
 block discarded – undo
120 136
 
121 137
 		public function move(int $parent_id) {
122 138
 
123
-			if (!parent::move($parent_id)) return false;
139
+			if (!parent::move($parent_id)) {
140
+				return false;
141
+			}
124 142
 
125 143
 			$this->updateSlugs();
126 144
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Profile/Controller/Password.php 1 patch
Braces   +15 added lines, -8 removed lines patch added patch discarded remove patch
@@ -20,23 +20,28 @@  discard block
 block discarded – undo
20 20
 
21 21
 			# Validate values
22 22
 
23
-			if (false === ($password = Validate::userPassword($password)))
24
-
23
+			if (false === ($password = Validate::userPassword($password))) {
24
+			
25 25
 				return ['password', 'USER_ERROR_PASSWORD_INVALID'];
26
+			}
26 27
 
27
-			if (false === ($password_new = Validate::userPassword($password_new)))
28
-
28
+			if (false === ($password_new = Validate::userPassword($password_new))) {
29
+			
29 30
 				return ['password_new', 'USER_ERROR_PASSWORD_NEW_INVALID'];
31
+			}
30 32
 
31
-			if (0 !== strcmp($password_new, $password_retype))
32
-
33
+			if (0 !== strcmp($password_new, $password_retype)) {
34
+			
33 35
 				return ['password_retype', 'USER_ERROR_PASSWORD_MISMATCH'];
36
+			}
34 37
 
35 38
 			# Check password
36 39
 
37 40
 			$password = Str::encode(Auth::user()->auth_key, $password);
38 41
 
39
-			if (0 !== strcmp(Auth::user()->password, $password)) return ['password', 'USER_ERROR_PASSWORD_INCORRECT'];
42
+			if (0 !== strcmp(Auth::user()->password, $password)) {
43
+				return ['password', 'USER_ERROR_PASSWORD_INCORRECT'];
44
+			}
40 45
 
41 46
 			# Encode password
42 47
 
@@ -49,7 +54,9 @@  discard block
 block discarded – undo
49 54
 			$data['auth_key']           = $auth_key;
50 55
 			$data['password']           = $password;
51 56
 
52
-			if (!Auth::user()->edit($data)) return 'USER_ERROR_EDIT_PASSWORD';
57
+			if (!Auth::user()->edit($data)) {
58
+				return 'USER_ERROR_EDIT_PASSWORD';
59
+			}
53 60
 
54 61
 			# ------------------------
55 62
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Profile/Controller/Personal.php 1 patch
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,13 +20,19 @@  discard block
 block discarded – undo
20 20
 
21 21
 			# Validate values
22 22
 
23
-			if (false === ($email = Validate::userEmail($email))) return ['email', 'USER_ERROR_EMAIL_INVALID'];
23
+			if (false === ($email = Validate::userEmail($email))) {
24
+				return ['email', 'USER_ERROR_EMAIL_INVALID'];
25
+			}
24 26
 
25 27
 			# Check email exists
26 28
 
27
-			if (false === ($check_email = Auth::user()->check($email, 'email'))) return 'USER_ERROR_EDIT_PERSONAL';
29
+			if (false === ($check_email = Auth::user()->check($email, 'email'))) {
30
+				return 'USER_ERROR_EDIT_PERSONAL';
31
+			}
28 32
 
29
-			if ($check_email === 1) return ['email', 'USER_ERROR_EMAIL_DUPLICATE'];
33
+			if ($check_email === 1) {
34
+				return ['email', 'USER_ERROR_EMAIL_DUPLICATE'];
35
+			}
30 36
 
31 37
 			# Update user
32 38
 
@@ -40,7 +46,9 @@  discard block
 block discarded – undo
40 46
 			$data['country']            = $country;
41 47
 			$data['timezone']           = $timezone;
42 48
 
43
-			if (!Auth::user()->edit($data)) return 'USER_ERROR_EDIT_PERSONAL';
49
+			if (!Auth::user()->edit($data)) {
50
+				return 'USER_ERROR_EDIT_PERSONAL';
51
+			}
44 52
 
45 53
 			# ------------------------
46 54
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Install/Utils/Tables.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 
47 47
 			for ($id = 2; $id <= 4; $id++) $pages[] = ['id' => $id, 'visibility' => VISIBILITY_PUBLISHED,
48 48
 
49
-				'locked' => false, 'slug' => ('page-' . ($id - 1)), 'name' => ('page-' . ($id - 1)),
49
+				'locked' => false, 'slug' => ('page-'.($id - 1)), 'name' => ('page-'.($id - 1)),
50 50
 
51
-				'title' => (Language::get('INSTALL_PAGE_DEMO_TITLE') . ' ' . ($id - 1)),
51
+				'title' => (Language::get('INSTALL_PAGE_DEMO_TITLE').' '.($id - 1)),
52 52
 
53 53
 				'contents' => Template::block(Language::get('INSTALL_PAGE_DEMO_CONTENTS'))->contents(),
54 54
 
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
 
82 82
 			for ($id = 1; $id <= 3; $id++) $menu[] = [
83 83
 
84
-				'id' => $id, 'active' => true, 'position' => ($id - 1), 'slug' => ('page-' . $id),
84
+				'id' => $id, 'active' => true, 'position' => ($id - 1), 'slug' => ('page-'.$id),
85 85
 
86
-				'text' => (Language::get('INSTALL_PAGE_DEMO_TITLE') . ' ' . $id)];
86
+				'text' => (Language::get('INSTALL_PAGE_DEMO_TITLE').' '.$id)];
87 87
 
88 88
 			# Process insertion
89 89
 
Please login to merge, or discard this patch.
Braces   +25 added lines, -7 removed lines patch added patch discarded remove patch
@@ -30,7 +30,11 @@  discard block
 block discarded – undo
30 30
 
31 31
 			$count = Informer::countEntries(TABLE_PAGES, true);
32 32
 
33
-			if (false === $count) return false; else if ($count > 0) return true;
33
+			if (false === $count) {
34
+				return false;
35
+			} else if ($count > 0) {
36
+				return true;
37
+			}
34 38
 
35 39
 			# Process dataset
36 40
 
@@ -44,7 +48,8 @@  discard block
 block discarded – undo
44 48
 
45 49
 				'time_created' => REQUEST_TIME, 'time_modified' => REQUEST_TIME]];
46 50
 
47
-			for ($id = 2; $id <= 4; $id++) $pages[] = ['id' => $id, 'visibility' => VISIBILITY_PUBLISHED,
51
+			for ($id = 2; $id <= 4; $id++) {
52
+				$pages[] = ['id' => $id, 'visibility' => VISIBILITY_PUBLISHED,
48 53
 
49 54
 				'locked' => false, 'slug' => ('page-' . ($id - 1)), 'name' => ('page-' . ($id - 1)),
50 55
 
@@ -53,10 +58,13 @@  discard block
 block discarded – undo
53 58
 				'contents' => Template::createBlock(Language::get('INSTALL_PAGE_DEMO_CONTENTS'))->getContents(),
54 59
 
55 60
 				'time_created' => REQUEST_TIME, 'time_modified' => REQUEST_TIME];
61
+			}
56 62
 
57 63
 			# Process insertion
58 64
 
59
-			if (!(DB::insert(TABLE_PAGES, $pages, true) && DB::getLast()->status)) return false;
65
+			if (!(DB::insert(TABLE_PAGES, $pages, true) && DB::getLast()->status)) {
66
+				return false;
67
+			}
60 68
 
61 69
 			self::fillRelationsTable(TABLE_PAGES_RELATIONS, 4);
62 70
 
@@ -73,21 +81,29 @@  discard block
 block discarded – undo
73 81
 
74 82
 			$count = Informer::countEntries(TABLE_MENU, true);
75 83
 
76
-			if (false === $count) return false; else if ($count > 0) return true;
84
+			if (false === $count) {
85
+				return false;
86
+			} else if ($count > 0) {
87
+				return true;
88
+			}
77 89
 
78 90
 			# Process dataset
79 91
 
80 92
 			$menu = [];
81 93
 
82
-			for ($id = 1; $id <= 3; $id++) $menu[] = [
94
+			for ($id = 1; $id <= 3; $id++) {
95
+				$menu[] = [
83 96
 
84 97
 				'id' => $id, 'active' => true, 'position' => ($id - 1), 'slug' => ('page-' . $id),
85 98
 
86 99
 				'text' => (Language::get('INSTALL_PAGE_DEMO_TITLE') . ' ' . $id)];
100
+			}
87 101
 
88 102
 			# Process insertion
89 103
 
90
-			if (!(DB::insert(TABLE_MENU, $menu, true) && DB::getLast()->status)) return false;
104
+			if (!(DB::insert(TABLE_MENU, $menu, true) && DB::getLast()->status)) {
105
+				return false;
106
+			}
91 107
 
92 108
 			self::fillRelationsTable(TABLE_MENU_RELATIONS, 3);
93 109
 
@@ -116,7 +132,9 @@  discard block
 block discarded – undo
116 132
 
117 133
 			$definitions[] = Entitizer::definition(TABLE_USERS_SESSIONS);
118 134
 
119
-			foreach ($definitions as $definition) if (!$definition->createTable()) return false;
135
+			foreach ($definitions as $definition) {
136
+				if (!$definition->createTable()) return false;
137
+			}
120 138
 
121 139
 			# ------------------------
122 140
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Form/Menuitem.php 1 patch
Unused Use Statements   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Modules\Entitizer\Form {
4 4
 
5
-	use Modules\Entitizer, Utils\Form, Utils\Range;
5
+	use Modules\Entitizer;
6
+	use Utils\Form;
7
+	use Utils\Range;
6 8
 
7 9
 	class Page extends Form {
8 10
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Definition/User/Secret.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,19 +14,19 @@
 block discarded – undo
14 14
 
15 15
 			# Add params
16 16
 
17
-			$this->params->textual      ('code',                true, 40, true, '');
18
-			$this->params->textual      ('ip',                  true, 255, false, '');
19
-			$this->params->integer      ('time',                false, 10, true, 0);
17
+			$this->params->textual('code', true, 40, true, '');
18
+			$this->params->textual('ip', true, 255, false, '');
19
+			$this->params->integer('time', false, 10, true, 0);
20 20
 
21 21
 			# Add indexes
22 22
 
23
-			$this->indexes->add         ('code',                'UNIQUE');
24
-			$this->indexes->add         ('ip');
25
-			$this->indexes->add         ('time');
23
+			$this->indexes->add('code', 'UNIQUE');
24
+			$this->indexes->add('ip');
25
+			$this->indexes->add('time');
26 26
 
27 27
 			# Add foreign keys
28 28
 
29
-			$this->foreigns->add        ('id',                  TABLE_USERS, 'id', 'CASCADE', 'RESTRICT');
29
+			$this->foreigns->add('id', TABLE_USERS, 'id', 'CASCADE', 'RESTRICT');
30 30
 		}
31 31
 	}
32 32
 }
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Entitizer/Dataset/Page.php 2 patches
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,14 +19,18 @@
 block discarded – undo
19 19
 
20 20
 			$this->addHandler('link', function (array $data) {
21 21
 
22
-				if ('' === $data['slug']) return '';
22
+				if ('' === $data['slug']) {
23
+					return '';
24
+				}
23 25
 
24 26
 				return (INSTALL_PATH . '/' . $data['slug']);
25 27
 			});
26 28
 
27 29
 			$this->addHandler('canonical', function (array $data) {
28 30
 
29
-				if ('' === $data['slug']) return '';
31
+				if ('' === $data['slug']) {
32
+					return '';
33
+				}
30 34
 
31 35
 				return (Settings::get('system_url') . (($data['id'] !== 1) ? ('/' . $data['slug']) : ''));
32 36
 			});
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,23 +12,23 @@
 block discarded – undo
12 12
 
13 13
 		protected function init() {
14 14
 
15
-			$this->addWorker('active', function (array $data) {
15
+			$this->addWorker('active', function(array $data) {
16 16
 
17 17
 				return (($data['visibility'] === VISIBILITY_PUBLISHED) && !$data['locked']);
18 18
 			});
19 19
 
20
-			$this->addWorker('link', function (array $data) {
20
+			$this->addWorker('link', function(array $data) {
21 21
 
22 22
 				if ('' === $data['slug']) return '';
23 23
 
24
-				return (INSTALL_PATH . '/' . $data['slug']);
24
+				return (INSTALL_PATH.'/'.$data['slug']);
25 25
 			});
26 26
 
27
-			$this->addWorker('canonical', function (array $data) {
27
+			$this->addWorker('canonical', function(array $data) {
28 28
 
29 29
 				if ('' === $data['slug']) return '';
30 30
 
31
-				return (Settings::get('system_url') . (($data['id'] !== 1) ? ('/' . $data['slug']) : ''));
31
+				return (Settings::get('system_url').(($data['id'] !== 1) ? ('/'.$data['slug']) : ''));
32 32
 			});
33 33
 		}
34 34
 	}
Please login to merge, or discard this patch.