Completed
Pull Request — master (#4617)
by Julius
14:00
created
lib/private/DB/MDB2SchemaWriter.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 		$xml->addChild('name', $config->getSystemValue('dbname', 'owncloud'));
44 44
 		$xml->addChild('create', 'true');
45 45
 		$xml->addChild('overwrite', 'false');
46
-		if($config->getSystemValue('dbtype', 'sqlite') === 'mysql' && $config->getSystemValue('mysql.utf8mb4', false)) {
46
+		if ($config->getSystemValue('dbtype', 'sqlite') === 'mysql' && $config->getSystemValue('mysql.utf8mb4', false)) {
47 47
 			$xml->addChild('charset', 'utf8mb4');
48 48
 		} else {
49 49
 			$xml->addChild('charset', 'utf8');
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
 
52 52
 		// FIX ME: bloody work around
53 53
 		if ($config->getSystemValue('dbtype', 'sqlite') === 'oci') {
54
-			$filterExpression = '/^"' . preg_quote($conn->getPrefix()) . '/';
54
+			$filterExpression = '/^"'.preg_quote($conn->getPrefix()).'/';
55 55
 		} else {
56
-			$filterExpression = '/^' . preg_quote($conn->getPrefix()) . '/';
56
+			$filterExpression = '/^'.preg_quote($conn->getPrefix()).'/';
57 57
 		}
58 58
 		$conn->getConfiguration()->setFilterSchemaAssetsExpression($filterExpression);
59 59
 
@@ -71,13 +71,13 @@  discard block
 block discarded – undo
71 71
 	private static function saveTable($table, $xml) {
72 72
 		$xml->addChild('name', $table->getName());
73 73
 		$declaration = $xml->addChild('declaration');
74
-		foreach($table->getColumns() as $column) {
74
+		foreach ($table->getColumns() as $column) {
75 75
 			self::saveColumn($column, $declaration->addChild('field'));
76 76
 		}
77
-		foreach($table->getIndexes() as $index) {
77
+		foreach ($table->getIndexes() as $index) {
78 78
 			if ($index->getName() == 'PRIMARY') {
79 79
 				$autoincrement = false;
80
-				foreach($index->getColumns() as $column) {
80
+				foreach ($index->getColumns() as $column) {
81 81
 					if ($table->getColumn($column)->getAutoincrement()) {
82 82
 						$autoincrement = true;
83 83
 					}
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	 */
97 97
 	private static function saveColumn($column, $xml) {
98 98
 		$xml->addChild('name', $column->getName());
99
-		switch($column->getType()) {
99
+		switch ($column->getType()) {
100 100
 			case 'SmallInt':
101 101
 			case 'Integer':
102 102
 			case 'BigInt':
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 		elseif ($index->isUnique()) {
170 170
 			$xml->addChild('unique', 'true');
171 171
 		}
172
-		foreach($index->getColumns() as $column) {
172
+		foreach ($index->getColumns() as $column) {
173 173
 			$field = $xml->addChild('field');
174 174
 			$field->addChild('name', $column);
175 175
 			$field->addChild('sorting', 'ascending');
Please login to merge, or discard this patch.
lib/private/DB/OracleMigrator.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 				// auto increment is not relevant for oracle and can anyhow not be applied on change
45 45
 				$column->changedProperties = array_diff($column->changedProperties, ['autoincrement', 'unsigned']);
46 46
 			}
47
-			$tableDiff->changedColumns = array_filter($tableDiff->changedColumns, function (ColumnDiff $column) {
47
+			$tableDiff->changedColumns = array_filter($tableDiff->changedColumns, function(ColumnDiff $column) {
48 48
 				return count($column->changedProperties) > 0;
49 49
 			});
50 50
 		}
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 	 * @return string
58 58
 	 */
59 59
 	protected function generateTemporaryTableName($name) {
60
-		return 'oc_' . uniqid();
60
+		return 'oc_'.uniqid();
61 61
 	}
62 62
 
63 63
 	/**
@@ -66,16 +66,16 @@  discard block
 block discarded – undo
66 66
 	 */
67 67
 	protected function convertStatementToScript($statement) {
68 68
 		if (substr($statement, -1) === ';') {
69
-			return $statement . PHP_EOL . '/' . PHP_EOL;
69
+			return $statement.PHP_EOL.'/'.PHP_EOL;
70 70
 		}
71
-		$script = $statement . ';';
71
+		$script = $statement.';';
72 72
 		$script .= PHP_EOL;
73 73
 		$script .= PHP_EOL;
74 74
 		return $script;
75 75
 	}
76 76
 
77 77
 	protected function getFilterExpression() {
78
-		return '/^"' . preg_quote($this->config->getSystemValue('dbtableprefix', 'oc_')) . '/';
78
+		return '/^"'.preg_quote($this->config->getSystemValue('dbtableprefix', 'oc_')).'/';
79 79
 	}
80 80
 
81 81
 }
Please login to merge, or discard this patch.
lib/private/DB/Migrator.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 * @return string
138 138
 	 */
139 139
 	protected function generateTemporaryTableName($name) {
140
-		return $this->config->getSystemValue('dbtableprefix', 'oc_') . $name . '_' . $this->random->generate(13, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_DIGITS);
140
+		return $this->config->getSystemValue('dbtableprefix', 'oc_').$name.'_'.$this->random->generate(13, ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS);
141 141
 	}
142 142
 
143 143
 	/**
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 				$indexName = $index->getName();
189 189
 			} else {
190 190
 				// avoid conflicts in index names
191
-				$indexName = $this->config->getSystemValue('dbtableprefix', 'oc_') . $this->random->generate(13, ISecureRandom::CHAR_LOWER);
191
+				$indexName = $this->config->getSystemValue('dbtableprefix', 'oc_').$this->random->generate(13, ISecureRandom::CHAR_LOWER);
192 192
 			}
193 193
 			$newIndexes[] = new Index($indexName, $index->getColumns(), $index->isUnique(), $index->isPrimary());
194 194
 		}
@@ -268,15 +268,15 @@  discard block
 block discarded – undo
268 268
 		$quotedSource = $this->connection->quoteIdentifier($sourceName);
269 269
 		$quotedTarget = $this->connection->quoteIdentifier($targetName);
270 270
 
271
-		$this->connection->exec('CREATE TABLE ' . $quotedTarget . ' (LIKE ' . $quotedSource . ')');
272
-		$this->connection->exec('INSERT INTO ' . $quotedTarget . ' SELECT * FROM ' . $quotedSource);
271
+		$this->connection->exec('CREATE TABLE '.$quotedTarget.' (LIKE '.$quotedSource.')');
272
+		$this->connection->exec('INSERT INTO '.$quotedTarget.' SELECT * FROM '.$quotedSource);
273 273
 	}
274 274
 
275 275
 	/**
276 276
 	 * @param string $name
277 277
 	 */
278 278
 	protected function dropTable($name) {
279
-		$this->connection->exec('DROP TABLE ' . $this->connection->quoteIdentifier($name));
279
+		$this->connection->exec('DROP TABLE '.$this->connection->quoteIdentifier($name));
280 280
 	}
281 281
 
282 282
 	/**
@@ -284,30 +284,30 @@  discard block
 block discarded – undo
284 284
 	 * @return string
285 285
 	 */
286 286
 	protected function convertStatementToScript($statement) {
287
-		$script = $statement . ';';
287
+		$script = $statement.';';
288 288
 		$script .= PHP_EOL;
289 289
 		$script .= PHP_EOL;
290 290
 		return $script;
291 291
 	}
292 292
 
293 293
 	protected function getFilterExpression() {
294
-		return '/^' . preg_quote($this->config->getSystemValue('dbtableprefix', 'oc_')) . '/';
294
+		return '/^'.preg_quote($this->config->getSystemValue('dbtableprefix', 'oc_')).'/';
295 295
 	}
296 296
 
297 297
 	protected function emit($sql, $step, $max) {
298 298
 		if ($this->noEmit) {
299 299
 			return;
300 300
 		}
301
-		if(is_null($this->dispatcher)) {
301
+		if (is_null($this->dispatcher)) {
302 302
 			return;
303 303
 		}
304
-		$this->dispatcher->dispatch('\OC\DB\Migrator::executeSql', new GenericEvent($sql, [$step+1, $max]));
304
+		$this->dispatcher->dispatch('\OC\DB\Migrator::executeSql', new GenericEvent($sql, [$step + 1, $max]));
305 305
 	}
306 306
 
307 307
 	private function emitCheckStep($tableName, $step, $max) {
308
-		if(is_null($this->dispatcher)) {
308
+		if (is_null($this->dispatcher)) {
309 309
 			return;
310 310
 		}
311
-		$this->dispatcher->dispatch('\OC\DB\Migrator::checkTable', new GenericEvent($tableName, [$step+1, $max]));
311
+		$this->dispatcher->dispatch('\OC\DB\Migrator::checkTable', new GenericEvent($tableName, [$step + 1, $max]));
312 312
 	}
313 313
 }
Please login to merge, or discard this patch.
lib/private/DB/SQLiteMigrator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 	 * @return string
64 64
 	 */
65 65
 	private function buildTempDatabase() {
66
-		$dataDir = $this->config->getSystemValue("datadirectory", \OC::$SERVERROOT . '/data');
66
+		$dataDir = $this->config->getSystemValue("datadirectory", \OC::$SERVERROOT.'/data');
67 67
 		$tmpFile = uniqid("oc_");
68 68
 		return "$dataDir/$tmpFile.db";
69 69
 	}
Please login to merge, or discard this patch.
lib/private/DB/AdapterPgSql.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
31 31
 
32 32
 	const UNIX_TIMESTAMP_REPLACEMENT = 'cast(extract(epoch from current_timestamp) as integer)';
33 33
 	public function fixupStatement($statement) {
34
-		$statement = str_replace( '`', '"', $statement );
35
-		$statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement );
34
+		$statement = str_replace('`', '"', $statement);
35
+		$statement = str_ireplace('UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement);
36 36
 		return $statement;
37 37
 	}
38 38
 }
Please login to merge, or discard this patch.
lib/private/App/AppStore/Version/VersionParser.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 	 * @return bool
33 33
 	 */
34 34
 	private function isValidVersionString($versionString) {
35
-		return (bool)preg_match('/^[0-9.]+$/', $versionString);
35
+		return (bool) preg_match('/^[0-9.]+$/', $versionString);
36 36
 	}
37 37
 
38 38
 	/**
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function getVersion($versionSpec) {
46 46
 		// * indicates that the version is compatible with all versions
47
-		if($versionSpec === '*') {
47
+		if ($versionSpec === '*') {
48 48
 			return new Version('', '');
49 49
 		}
50 50
 
@@ -56,18 +56,18 @@  discard block
 block discarded – undo
56 56
 		$secondVersion = isset($versionElements[1]) ? $versionElements[1] : '';
57 57
 		$secondVersionNumber = substr($secondVersion, 2);
58 58
 
59
-		switch(count($versionElements)) {
59
+		switch (count($versionElements)) {
60 60
 			case 1:
61
-				if(!$this->isValidVersionString($firstVersionNumber)) {
61
+				if (!$this->isValidVersionString($firstVersionNumber)) {
62 62
 					break;
63 63
 				}
64
-				if(substr($firstVersion, 0, 1) === '>') {
64
+				if (substr($firstVersion, 0, 1) === '>') {
65 65
 					return new Version($firstVersionNumber, '');
66 66
 				} else {
67 67
 					return new Version('', $firstVersionNumber);
68 68
 				}
69 69
 			case 2:
70
-				if(!$this->isValidVersionString($firstVersionNumber) || !$this->isValidVersionString($secondVersionNumber)) {
70
+				if (!$this->isValidVersionString($firstVersionNumber) || !$this->isValidVersionString($secondVersionNumber)) {
71 71
 					break;
72 72
 				}
73 73
 				return new Version($firstVersionNumber, $secondVersionNumber);
Please login to merge, or discard this patch.
lib/private/App/DependencyAnalyzer.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -139,19 +139,19 @@  discard block
 block discarded – undo
139 139
 		if (isset($dependencies['php']['@attributes']['min-version'])) {
140 140
 			$minVersion = $dependencies['php']['@attributes']['min-version'];
141 141
 			if ($this->compareSmaller($this->platform->getPhpVersion(), $minVersion)) {
142
-				$missing[] = (string)$this->l->t('PHP %s or higher is required.', $minVersion);
142
+				$missing[] = (string) $this->l->t('PHP %s or higher is required.', $minVersion);
143 143
 			}
144 144
 		}
145 145
 		if (isset($dependencies['php']['@attributes']['max-version'])) {
146 146
 			$maxVersion = $dependencies['php']['@attributes']['max-version'];
147 147
 			if ($this->compareBigger($this->platform->getPhpVersion(), $maxVersion)) {
148
-				$missing[] = (string)$this->l->t('PHP with a version lower than %s is required.', $maxVersion);
148
+				$missing[] = (string) $this->l->t('PHP with a version lower than %s is required.', $maxVersion);
149 149
 			}
150 150
 		}
151 151
 		if (isset($dependencies['php']['@attributes']['min-int-size'])) {
152 152
 			$intSize = $dependencies['php']['@attributes']['min-int-size'];
153
-			if ($intSize > $this->platform->getIntSize()*8) {
154
-				$missing[] = (string)$this->l->t('%sbit or higher PHP required.', $intSize);
153
+			if ($intSize > $this->platform->getIntSize() * 8) {
154
+				$missing[] = (string) $this->l->t('%sbit or higher PHP required.', $intSize);
155 155
 			}
156 156
 		}
157 157
 		return $missing;
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
 		if (!is_array($supportedDatabases)) {
175 175
 			$supportedDatabases = array($supportedDatabases);
176 176
 		}
177
-		$supportedDatabases = array_map(function ($db) {
177
+		$supportedDatabases = array_map(function($db) {
178 178
 			return $this->getValue($db);
179 179
 		}, $supportedDatabases);
180 180
 		$currentDatabase = $this->platform->getDatabase();
181 181
 		if (!in_array($currentDatabase, $supportedDatabases)) {
182
-			$missing[] = (string)$this->l->t('Following databases are supported: %s', join(', ', $supportedDatabases));
182
+			$missing[] = (string) $this->l->t('Following databases are supported: %s', join(', ', $supportedDatabases));
183 183
 		}
184 184
 		return $missing;
185 185
 	}
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 			}
209 209
 			$commandName = $this->getValue($command);
210 210
 			if (!$this->platform->isCommandKnown($commandName)) {
211
-				$missing[] = (string)$this->l->t('The command line tool %s could not be found', $commandName);
211
+				$missing[] = (string) $this->l->t('The command line tool %s could not be found', $commandName);
212 212
 			}
213 213
 		}
214 214
 		return $missing;
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 			$libName = $this->getValue($lib);
236 236
 			$libVersion = $this->platform->getLibraryVersion($libName);
237 237
 			if (is_null($libVersion)) {
238
-				$missing[] = (string)$this->l->t('The library %s is not available.', $libName);
238
+				$missing[] = (string) $this->l->t('The library %s is not available.', $libName);
239 239
 				continue;
240 240
 			}
241 241
 
@@ -243,14 +243,14 @@  discard block
 block discarded – undo
243 243
 				if (isset($lib['@attributes']['min-version'])) {
244 244
 					$minVersion = $lib['@attributes']['min-version'];
245 245
 					if ($this->compareSmaller($libVersion, $minVersion)) {
246
-						$missing[] = (string)$this->l->t('Library %s with a version higher than %s is required - available version %s.',
246
+						$missing[] = (string) $this->l->t('Library %s with a version higher than %s is required - available version %s.',
247 247
 							array($libName, $minVersion, $libVersion));
248 248
 					}
249 249
 				}
250 250
 				if (isset($lib['@attributes']['max-version'])) {
251 251
 					$maxVersion = $lib['@attributes']['max-version'];
252 252
 					if ($this->compareBigger($libVersion, $maxVersion)) {
253
-						$missing[] = (string)$this->l->t('Library %s with a version lower than %s is required - available version %s.',
253
+						$missing[] = (string) $this->l->t('Library %s with a version lower than %s is required - available version %s.',
254 254
 							array($libName, $maxVersion, $libVersion));
255 255
 					}
256 256
 				}
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 			return $missing;
275 275
 		}
276 276
 		if (is_array($oss)) {
277
-			$oss = array_map(function ($os) {
277
+			$oss = array_map(function($os) {
278 278
 				return $this->getValue($os);
279 279
 			}, $oss);
280 280
 		} else {
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 		}
283 283
 		$currentOS = $this->platform->getOS();
284 284
 		if (!in_array($currentOS, $oss)) {
285
-			$missing[] = (string)$this->l->t('Following platforms are supported: %s', join(', ', $oss));
285
+			$missing[] = (string) $this->l->t('Following platforms are supported: %s', join(', ', $oss));
286 286
 		}
287 287
 		return $missing;
288 288
 	}
@@ -315,12 +315,12 @@  discard block
 block discarded – undo
315 315
 
316 316
 		if (!is_null($minVersion)) {
317 317
 			if ($this->compareSmaller($this->platform->getOcVersion(), $minVersion)) {
318
-				$missing[] = (string)$this->l->t('Server version %s or higher is required.', $this->toVisibleVersion($minVersion));
318
+				$missing[] = (string) $this->l->t('Server version %s or higher is required.', $this->toVisibleVersion($minVersion));
319 319
 			}
320 320
 		}
321 321
 		if (!is_null($maxVersion)) {
322 322
 			if ($this->compareBigger($this->platform->getOcVersion(), $maxVersion)) {
323
-				$missing[] = (string)$this->l->t('Server version %s or lower is required.', $this->toVisibleVersion($maxVersion));
323
+				$missing[] = (string) $this->l->t('Server version %s or lower is required.', $this->toVisibleVersion($maxVersion));
324 324
 			}
325 325
 		}
326 326
 		return $missing;
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
 				return '10';
339 339
 			default:
340 340
 				if (strpos($version, '9.1.') === 0) {
341
-					$version = '10.0.' . substr($version, 4);
341
+					$version = '10.0.'.substr($version, 4);
342 342
 				}
343 343
 				return $version;
344 344
 		}
@@ -351,6 +351,6 @@  discard block
 block discarded – undo
351 351
 	private function getValue($element) {
352 352
 		if (isset($element['@value']))
353 353
 			return $element['@value'];
354
-		return (string)$element;
354
+		return (string) $element;
355 355
 	}
356 356
 }
Please login to merge, or discard this patch.
lib/private/App/CodeChecker/NodeVisitor.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
 	public function enterNode(Node $node) {
104 104
 		if ($this->checkEqualOperatorUsage && $node instanceof Node\Expr\BinaryOp\Equal) {
105
-			$this->errors[]= [
105
+			$this->errors[] = [
106 106
 				'disallowedToken' => '==',
107 107
 				'errorCode' => CodeChecker::OP_OPERATOR_USAGE_DISCOURAGED,
108 108
 				'line' => $node->getLine(),
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 			];
111 111
 		}
112 112
 		if ($this->checkEqualOperatorUsage && $node instanceof Node\Expr\BinaryOp\NotEqual) {
113
-			$this->errors[]= [
113
+			$this->errors[] = [
114 114
 				'disallowedToken' => '!=',
115 115
 				'errorCode' => CodeChecker::OP_OPERATOR_USAGE_DISCOURAGED,
116 116
 				'line' => $node->getLine(),
@@ -214,28 +214,28 @@  discard block
 block discarded – undo
214 214
 		$alias = strtolower($alias);
215 215
 
216 216
 		foreach ($this->blackListedClassNames as $blackListedAlias => $blackListedClassName) {
217
-			if (strpos($blackListedClassName, $name . '\\') === 0) {
217
+			if (strpos($blackListedClassName, $name.'\\') === 0) {
218 218
 				$aliasedClassName = str_replace($name, $alias, $blackListedClassName);
219 219
 				$this->blackListedClassNames[$aliasedClassName] = $blackListedClassName;
220 220
 			}
221 221
 		}
222 222
 
223 223
 		foreach ($this->blackListedConstants as $blackListedAlias => $blackListedConstant) {
224
-			if (strpos($blackListedConstant, $name . '\\') === 0 || strpos($blackListedConstant, $name . '::') === 0) {
224
+			if (strpos($blackListedConstant, $name.'\\') === 0 || strpos($blackListedConstant, $name.'::') === 0) {
225 225
 				$aliasedConstantName = str_replace($name, $alias, $blackListedConstant);
226 226
 				$this->blackListedConstants[$aliasedConstantName] = $blackListedConstant;
227 227
 			}
228 228
 		}
229 229
 
230 230
 		foreach ($this->blackListedFunctions as $blackListedAlias => $blackListedFunction) {
231
-			if (strpos($blackListedFunction, $name . '\\') === 0 || strpos($blackListedFunction, $name . '::') === 0) {
231
+			if (strpos($blackListedFunction, $name.'\\') === 0 || strpos($blackListedFunction, $name.'::') === 0) {
232 232
 				$aliasedFunctionName = str_replace($name, $alias, $blackListedFunction);
233 233
 				$this->blackListedFunctions[$aliasedFunctionName] = $blackListedFunction;
234 234
 			}
235 235
 		}
236 236
 
237 237
 		foreach ($this->blackListedMethods as $blackListedAlias => $blackListedMethod) {
238
-			if (strpos($blackListedMethod, $name . '\\') === 0 || strpos($blackListedMethod, $name . '::') === 0) {
238
+			if (strpos($blackListedMethod, $name.'\\') === 0 || strpos($blackListedMethod, $name.'::') === 0) {
239 239
 				$aliasedMethodName = str_replace($name, $alias, $blackListedMethod);
240 240
 				$this->blackListedMethods[$aliasedMethodName] = $blackListedMethod;
241 241
 			}
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 		$lowerName = strtolower($name);
247 247
 
248 248
 		if (isset($this->blackListedClassNames[$lowerName])) {
249
-			$this->errors[]= [
249
+			$this->errors[] = [
250 250
 				'disallowedToken' => $name,
251 251
 				'errorCode' => $errorCode,
252 252
 				'line' => $node->getLine(),
@@ -256,11 +256,11 @@  discard block
 block discarded – undo
256 256
 	}
257 257
 
258 258
 	private function checkBlackListConstant($class, $constantName, Node $node) {
259
-		$name = $class . '::' . $constantName;
259
+		$name = $class.'::'.$constantName;
260 260
 		$lowerName = strtolower($name);
261 261
 
262 262
 		if (isset($this->blackListedConstants[$lowerName])) {
263
-			$this->errors[]= [
263
+			$this->errors[] = [
264 264
 				'disallowedToken' => $name,
265 265
 				'errorCode' => CodeChecker::CLASS_CONST_FETCH_NOT_ALLOWED,
266 266
 				'line' => $node->getLine(),
@@ -270,11 +270,11 @@  discard block
 block discarded – undo
270 270
 	}
271 271
 
272 272
 	private function checkBlackListFunction($class, $functionName, Node $node) {
273
-		$name = $class . '::' . $functionName;
273
+		$name = $class.'::'.$functionName;
274 274
 		$lowerName = strtolower($name);
275 275
 
276 276
 		if (isset($this->blackListedFunctions[$lowerName])) {
277
-			$this->errors[]= [
277
+			$this->errors[] = [
278 278
 				'disallowedToken' => $name,
279 279
 				'errorCode' => CodeChecker::STATIC_CALL_NOT_ALLOWED,
280 280
 				'line' => $node->getLine(),
@@ -284,11 +284,11 @@  discard block
 block discarded – undo
284 284
 	}
285 285
 
286 286
 	private function checkBlackListMethod($class, $functionName, Node $node) {
287
-		$name = $class . '::' . $functionName;
287
+		$name = $class.'::'.$functionName;
288 288
 		$lowerName = strtolower($name);
289 289
 
290 290
 		if (isset($this->blackListedMethods[$lowerName])) {
291
-			$this->errors[]= [
291
+			$this->errors[] = [
292 292
 				'disallowedToken' => $name,
293 293
 				'errorCode' => CodeChecker::CLASS_METHOD_CALL_NOT_ALLOWED,
294 294
 				'line' => $node->getLine(),
Please login to merge, or discard this patch.
lib/private/App/CodeChecker/CodeChecker.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@  discard block
 block discarded – undo
42 42
 	const CLASS_IMPLEMENTS_NOT_ALLOWED = 1001;
43 43
 	const STATIC_CALL_NOT_ALLOWED = 1002;
44 44
 	const CLASS_CONST_FETCH_NOT_ALLOWED = 1003;
45
-	const CLASS_NEW_NOT_ALLOWED =  1004;
46
-	const OP_OPERATOR_USAGE_DISCOURAGED =  1005;
47
-	const CLASS_USE_NOT_ALLOWED =  1006;
48
-	const CLASS_METHOD_CALL_NOT_ALLOWED =  1007;
45
+	const CLASS_NEW_NOT_ALLOWED = 1004;
46
+	const OP_OPERATOR_USAGE_DISCOURAGED = 1005;
47
+	const CLASS_USE_NOT_ALLOWED = 1006;
48
+	const CLASS_METHOD_CALL_NOT_ALLOWED = 1007;
49 49
 
50 50
 	/** @var Parser */
51 51
 	private $parser;
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
 		}
86 86
 
87 87
 		$excludes = array_map(function($item) use ($folder) {
88
-			return $folder . '/' . $item;
88
+			return $folder.'/'.$item;
89 89
 		}, $excludedDirectories);
90 90
 
91 91
 		$iterator = new RecursiveDirectoryIterator($folder, RecursiveDirectoryIterator::SKIP_DOTS);
92 92
 		$iterator = new RecursiveCallbackFilterIterator($iterator, function($item) use ($folder, $excludes){
93 93
 			/** @var SplFileInfo $item */
94
-			foreach($excludes as $exclude) {
94
+			foreach ($excludes as $exclude) {
95 95
 				if (substr($item->getPath(), 0, strlen($exclude)) === $exclude) {
96 96
 					return false;
97 97
 				}
Please login to merge, or discard this patch.