Passed
Push — master ( e0d6a2...2ec881 )
by Anton
05:25 queued 02:20
created
www/engine/Framework/Classes/Request/Request.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
 		public static function redirect(string $url) {
47 47
 
48
-			header("Location: " . $url); exit();
48
+			header("Location: ".$url); exit();
49 49
 		}
50 50
 	}
51 51
 }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 		/**
57 57
 		 * Get a FILE-param value
58 58
 		 *
59
-		 * @return array|false : the array with file info or false if the param does not exist
59
+		 * @return string : the array with file info or false if the param does not exist
60 60
 		 */
61 61
 
62 62
 		public static function file(string $name) {
Please login to merge, or discard this patch.
www/engine/Framework/Classes/Agent/Agent.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@
 block discarded – undo
23 23
 
24 24
 		public static function __autoload() {
25 25
 
26
-			$file_mobiles = (DIR_DATA . 'Agent/Mobiles.php');
26
+			$file_mobiles = (DIR_DATA.'Agent/Mobiles.php');
27 27
 
28
-			$file_robots = (DIR_DATA . 'Agent/Robots.php');
28
+			$file_robots = (DIR_DATA.'Agent/Robots.php');
29 29
 
30 30
 			if (is_array($mobiles = Explorer::php($file_mobiles))) self::$mobiles = $mobiles;
31 31
 
Please login to merge, or discard this 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/Mailer/Mailer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,13 +12,13 @@
 block discarded – undo
12 12
 
13 13
 			# Set headers
14 14
 
15
-			$headers  = ('MIME-Version: 1.0' . "\r\n");
15
+			$headers  = ('MIME-Version: 1.0'."\r\n");
16 16
 
17
-			$headers .= ('Content-Type: ' . ($is_html ? 'text/html' : 'text/plain') . '; charset=UTF-8' . "\r\n");
17
+			$headers .= ('Content-Type: '.($is_html ? 'text/html' : 'text/plain').'; charset=UTF-8'."\r\n");
18 18
 
19
-			$headers .= ('From: ' . $sender . ' <' . $from . '>' . "\r\n" . 'Reply-To: ' . $reply_to . "\r\n");
19
+			$headers .= ('From: '.$sender.' <'.$from.'>'."\r\n".'Reply-To: '.$reply_to."\r\n");
20 20
 
21
-			$headers .= ('X-Mailer: PHP/' . phpversion() . "\r\n");
21
+			$headers .= ('X-Mailer: PHP/'.phpversion()."\r\n");
22 22
 
23 23
 			# Send message
24 24
 
Please login to merge, or discard this patch.
www/engine/Framework/Classes/DB/Query/Delete.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
 			# Build query
20 20
 
21
-			$this->query = ('DELETE FROM ' . $table . ($condition ? (' WHERE (' .  $condition . ')') : ''));
21
+			$this->query = ('DELETE FROM '.$table.($condition ? (' WHERE ('.$condition.')') : ''));
22 22
 		}
23 23
 	}
24 24
 }
Please login to merge, or discard this patch.
www/engine/Framework/Classes/DB/Query/Select.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
 
23 23
 			# Build query
24 24
 
25
-			$this->query = ('SELECT ' . $selection . ' FROM ' . $table . ($condition ? (' WHERE (' .  $condition . ')') : '') .
25
+			$this->query = ('SELECT '.$selection.' FROM '.$table.($condition ? (' WHERE ('.$condition.')') : '').
26 26
 
27
-				($order ? (' ORDER BY ' .  $order) : '') . ($limit ? (' LIMIT ' .  $limit) : ''));
27
+				($order ? (' ORDER BY '.$order) : '').($limit ? (' LIMIT '.$limit) : ''));
28 28
 		}
29 29
 	}
30 30
 }
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Filemanager/Utils/Handler.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,9 +88,9 @@  discard block
 block discarded – undo
88 88
 
89 89
 			if (!$this->entity->init(Request::get('name'))) {
90 90
 
91
-				$query = (('' !== $this->parent->path()) ? ('?parent=' . $this->parent->path()) : '');
91
+				$query = (('' !== $this->parent->path()) ? ('?parent='.$this->parent->path()) : '');
92 92
 
93
-				Request::redirect(INSTALL_PATH . '/admin/content/filemanager' . $query);
93
+				Request::redirect(INSTALL_PATH.'/admin/content/filemanager'.$query);
94 94
 			}
95 95
 
96 96
 			# Create form
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
 
102 102
 			if ($this->form->handle(new Filemanager\Controller\Rename($this->entity))) {
103 103
 
104
-				$query = ('?parent=' . $this->parent->path() . '&name=' . $this->entity->name() . '&submitted');
104
+				$query = ('?parent='.$this->parent->path().'&name='.$this->entity->name().'&submitted');
105 105
 
106
-				Request::redirect(INSTALL_PATH . '/admin/content/filemanager/' . static::$type . $query);
106
+				Request::redirect(INSTALL_PATH.'/admin/content/filemanager/'.static::$type.$query);
107 107
 			}
108 108
 
109 109
 			# Display success message
Please login to merge, or discard this 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 ($ajax) return $this->handleAjax();
83
+			if ($ajax) {
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/Entitizer/Utils/Handler.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
 
62 62
 			# Set link
63 63
 
64
-			$link = (INSTALL_PATH . static::$link . '/');
64
+			$link = (INSTALL_PATH.static::$link.'/');
65 65
 
66
-			if (static::$nesting) $contents->link = ($link . ($this->create ? 'create' : 'edit') . '?id=' . $this->parent->id);
66
+			if (static::$nesting) $contents->link = ($link.($this->create ? 'create' : 'edit').'?id='.$this->parent->id);
67 67
 
68
-			else $contents->link = ($link . ($this->create ? 'create' : ('edit?id=' . $this->entity->id)));
68
+			else $contents->link = ($link.($this->create ? 'create' : ('edit?id='.$this->entity->id)));
69 69
 
70 70
 			# Process parent block
71 71
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
 			# Redirect if entity not found
126 126
 
127
-			if (!$this->create && (0 === $this->entity->id)) return Request::redirect(INSTALL_PATH . static::$link);
127
+			if (!$this->create && (0 === $this->entity->id)) return Request::redirect(INSTALL_PATH.static::$link);
128 128
 
129 129
 			# Create form
130 130
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
 			if ($this->form->handle(new static::$controller($this->entity))) {
138 138
 
139
-				Request::redirect(INSTALL_PATH . static::$link . '/edit?id=' . $this->entity->id . '&submitted');
139
+				Request::redirect(INSTALL_PATH.static::$link.'/edit?id='.$this->entity->id.'&submitted');
140 140
 			}
141 141
 
142 142
 			# Display success message
Please login to merge, or discard this patch.
Braces   +37 added lines, -15 removed lines patch added patch discarded remove patch
@@ -45,7 +45,9 @@  discard block
 block discarded – undo
45 45
 
46 46
 		private function processSelector(Template\Block $selector) {
47 47
 
48
-			if ($this->create) return $selector->disable();
48
+			if ($this->create) {
49
+				return $selector->disable();
50
+			}
49 51
 
50 52
 			$selector->parent_id = $this->entity->parent_id;
51 53
 
@@ -68,25 +70,33 @@  discard block
 block discarded – undo
68 70
 
69 71
 			# Set path / title
70 72
 
71
-			if (static::$nesting) $contents->path = $this->path;
72
-
73
-			else $contents->title = ($this->create ? Language::get(static::$naming_new) : $this->entity->get(static::$naming));
73
+			if (static::$nesting) {
74
+				$contents->path = $this->path;
75
+			} else {
76
+				$contents->title = ($this->create ? Language::get(static::$naming_new) : $this->entity->get(static::$naming));
77
+			}
74 78
 
75 79
 			# Process parent block
76 80
 
77
-			if (static::$nesting) $this->processParent($contents->getBlock('parent'));
81
+			if (static::$nesting) {
82
+				$this->processParent($contents->getBlock('parent'));
83
+			}
78 84
 
79 85
 			# Set link
80 86
 
81 87
 			$link = (INSTALL_PATH . static::$link . '/');
82 88
 
83
-			if (static::$nesting) $contents->link = ($link . ($this->create ? 'create' : 'edit') . '?id=' . $this->parent->id);
84
-
85
-			else $contents->link = ($link . ($this->create ? 'create' : ('edit?id=' . $this->entity->id)));
89
+			if (static::$nesting) {
90
+				$contents->link = ($link . ($this->create ? 'create' : 'edit') . '?id=' . $this->parent->id);
91
+			} else {
92
+				$contents->link = ($link . ($this->create ? 'create' : ('edit?id=' . $this->entity->id)));
93
+			}
86 94
 
87 95
 			# Process selector block
88 96
 
89
-			if (static::$nesting) $this->processSelector($contents->getBlock('selector'));
97
+			if (static::$nesting) {
98
+				$this->processSelector($contents->getBlock('selector'));
99
+			}
90 100
 
91 101
 			# Implement form
92 102
 
@@ -119,11 +129,15 @@  discard block
 block discarded – undo
119 129
 
120 130
 				$parent_id = Number::forceInt(Request::post('parent_id'));
121 131
 
122
-				if (!$this->entity->move($parent_id)) return $ajax->setError(Language::get(static::$message_error_move));
132
+				if (!$this->entity->move($parent_id)) {
133
+					return $ajax->setError(Language::get(static::$message_error_move));
134
+				}
123 135
 
124 136
 			} else if (Request::post('action') === 'remove') {
125 137
 
126
-				if (!$this->entity->remove()) return $ajax->setError(Language::get(static::$message_error_remove));
138
+				if (!$this->entity->remove()) {
139
+					return $ajax->setError(Language::get(static::$message_error_remove));
140
+				}
127 141
 			}
128 142
 
129 143
 			# ------------------------
@@ -135,7 +149,9 @@  discard block
 block discarded – undo
135 149
 
136 150
 		protected function handle(bool $ajax = false) {
137 151
 
138
-			if (!$this->create && $ajax) return $this->handleAjax();
152
+			if (!$this->create && $ajax) {
153
+				return $this->handleAjax();
154
+			}
139 155
 
140 156
 			# Create entity
141 157
 
@@ -143,7 +159,9 @@  discard block
 block discarded – undo
143 159
 
144 160
 			$this->entity = Entitizer::get(static::$table, (!$this->create ? $id : 0));
145 161
 
146
-			if (!$this->create && (0 === $this->entity->id)) return Request::redirect(INSTALL_PATH . static::$link);
162
+			if (!$this->create && (0 === $this->entity->id)) {
163
+				return Request::redirect(INSTALL_PATH . static::$link);
164
+			}
147 165
 
148 166
 			# Create parent entity
149 167
 
@@ -151,7 +169,9 @@  discard block
 block discarded – undo
151 169
 
152 170
 			# Get path
153 171
 
154
-			if (false !== ($path = $this->parent->path())) $this->path = $path;
172
+			if (false !== ($path = $this->parent->path())) {
173
+				$this->path = $path;
174
+			}
155 175
 
156 176
 			# Create form
157 177
 
@@ -161,7 +181,9 @@  discard block
 block discarded – undo
161 181
 
162 182
 			if ($this->form->handle(new static::$controller($this->entity), true)) {
163 183
 
164
-				if ($this->create && (0 !== $this->parent->id)) $this->entity->move($this->parent->id);
184
+				if ($this->create && (0 !== $this->parent->id)) {
185
+					$this->entity->move($this->parent->id);
186
+				}
165 187
 
166 188
 				Request::redirect(INSTALL_PATH . static::$link . '/edit?id=' . $this->entity->id . '&submitted');
167 189
 			}
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Profile/Handler/Edit.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
 			if ($this->form_personal->handle($controller_personal) || $this->form_password->handle($controller_password)) {
47 47
 
48
-				Request::redirect(INSTALL_PATH . '/profile/edit?submitted');
48
+				Request::redirect(INSTALL_PATH.'/profile/edit?submitted');
49 49
 			}
50 50
 
51 51
 			# Display success message
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,9 @@
 block discarded – undo
50 50
 
51 51
 			# Display success message
52 52
 
53
-			if (false !== Request::get('submitted')) Messages::set('success', Language::get('USER_SUCCESS_EDIT'));
53
+			if (false !== Request::get('submitted')) {
54
+				Messages::set('success', Language::get('USER_SUCCESS_EDIT'));
55
+			}
54 56
 
55 57
 			# ------------------------
56 58
 
Please login to merge, or discard this patch.
www/engine/System/Classes/Modules/Install/Handler/Database.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
 			if ($this->form->handle(new Install\Controller\Database())) {
37 37
 
38
-				Request::redirect(INSTALL_PATH . '/admin/register');
38
+				Request::redirect(INSTALL_PATH.'/admin/register');
39 39
 			}
40 40
 
41 41
 			# ------------------------
Please login to merge, or discard this patch.