Passed
Push — master ( f533bd...3986a9 )
by Ron
02:38
created
src/Databases/MySQL.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 * @param array<string, mixed> $options
49 49
 	 */
50 50
 	public function __construct(PDO $pdo, array $options = []) {
51
-		if($pdo->getAttribute(PDO::ATTR_ERRMODE) === PDO::ERRMODE_SILENT) {
51
+		if ($pdo->getAttribute(PDO::ATTR_ERRMODE) === PDO::ERRMODE_SILENT) {
52 52
 			$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
53 53
 		}
54 54
 		$this->pdo = $pdo;
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 	 * @return VirtualTables
83 83
 	 */
84 84
 	public function getVirtualTables(): VirtualTables {
85
-		if($this->virtualTables === null) {
85
+		if ($this->virtualTables === null) {
86 86
 			$this->virtualTables = new VirtualTables();
87 87
 		}
88 88
 		return $this->virtualTables;
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 * @return QueryStatement
94 94
 	 */
95 95
 	public function query(string $query) {
96
-		return $this->buildQueryStatement($query, function ($query) {
96
+		return $this->buildQueryStatement($query, function($query) {
97 97
 			return $this->pdo->query($query);
98 98
 		});
99 99
 	}
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	 * @return QueryStatement
104 104
 	 */
105 105
 	public function prepare(string $query) {
106
-		return $this->buildQueryStatement((string) $query, function ($query) {
106
+		return $this->buildQueryStatement((string) $query, function($query) {
107 107
 			return $this->pdo->prepare($query);
108 108
 		});
109 109
 	}
@@ -114,11 +114,11 @@  discard block
 block discarded – undo
114 114
 	 * @return int
115 115
 	 */
116 116
 	public function exec(string $query, array $params = []): int {
117
-		return $this->exceptionHandler(function () use ($query, $params) {
117
+		return $this->exceptionHandler(function() use ($query, $params) {
118 118
 			$stmt = $this->pdo->prepare($query);
119 119
 			$timer = microtime(true);
120 120
 			$stmt->execute($params);
121
-			$this->queryLoggers->log($query, microtime(true) - $timer);
121
+			$this->queryLoggers->log($query, microtime(true)-$timer);
122 122
 			$result = $stmt->rowCount();
123 123
 			$stmt->closeCursor();
124 124
 			return $result;
@@ -139,15 +139,15 @@  discard block
 block discarded – undo
139 139
 	 */
140 140
 	public function getTableFields(string $table): array {
141 141
 		$table = $this->select()->aliasReplacer()->replace($table);
142
-		if(array_key_exists($table, $this->tableFields)) {
142
+		if (array_key_exists($table, $this->tableFields)) {
143 143
 			return $this->tableFields[$table];
144 144
 		}
145 145
 		$stmt = $this->pdo->query("DESCRIBE {$table}");
146
-		if($stmt === false) {
146
+		if ($stmt === false) {
147 147
 			throw new RuntimeException('Invalid return type');
148 148
 		}
149 149
 		$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
150
-		$this->tableFields[$table] = array_map(static function ($row) { return $row['Field']; }, $rows ?: []);
150
+		$this->tableFields[$table] = array_map(static function($row) { return $row['Field']; }, $rows ?: []);
151 151
 		$stmt->closeCursor();
152 152
 		return $this->tableFields[$table];
153 153
 	}
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 		$select = array_key_exists('select-factory', $this->options)
186 186
 			? call_user_func($this->options['select-factory'], $this, $this->options['select-options'])
187 187
 			: new MySQL\MySQLRunnableSelect($this, $this->options['select-options']);
188
-		if($fields !== null) {
188
+		if ($fields !== null) {
189 189
 			$select->fields($fields);
190 190
 		}
191 191
 		return $select;
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 		$insert = array_key_exists('insert-factory', $this->options)
200 200
 			? call_user_func($this->options['insert-factory'], $this, $this->options['insert-options'])
201 201
 			: new Builder\RunnableInsert($this, $this->options['insert-options']);
202
-		if($fields !== null) {
202
+		if ($fields !== null) {
203 203
 			$insert->addAll($fields);
204 204
 		}
205 205
 		return $insert;
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 		$update = array_key_exists('update-factory', $this->options)
214 214
 			? call_user_func($this->options['update-factory'], $this, $this->options['update-options'])
215 215
 			: new Builder\RunnableUpdate($this, $this->options['update-options']);
216
-		if($fields !== null) {
216
+		if ($fields !== null) {
217 217
 			$update->setAll($fields);
218 218
 		}
219 219
 		return $update;
@@ -232,8 +232,8 @@  discard block
 block discarded – undo
232 232
 	 * @return $this
233 233
 	 */
234 234
 	public function transactionStart() {
235
-		if($this->transactionLevel === 0) {
236
-			if($this->pdo->inTransaction()) {
235
+		if ($this->transactionLevel === 0) {
236
+			if ($this->pdo->inTransaction()) {
237 237
 				$this->outerTransaction = true;
238 238
 			} else {
239 239
 				$this->pdo->beginTransaction();
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
 	 * @return $this
248 248
 	 */
249 249
 	public function transactionCommit() {
250
-		return $this->transactionEnd(function () {
250
+		return $this->transactionEnd(function() {
251 251
 			$this->pdo->commit();
252 252
 		});
253 253
 	}
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 	 * @return $this
257 257
 	 */
258 258
 	public function transactionRollback() {
259
-		return $this->transactionEnd(function () {
259
+		return $this->transactionEnd(function() {
260 260
 			$this->pdo->rollBack();
261 261
 		});
262 262
 	}
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
 	 * @return T
268 268
 	 */
269 269
 	public function dryRun(callable $callback) {
270
-		if(!$this->pdo->inTransaction()) {
270
+		if (!$this->pdo->inTransaction()) {
271 271
 			$this->transactionStart();
272 272
 			try {
273 273
 				return $callback($this);
@@ -292,14 +292,14 @@  discard block
 block discarded – undo
292 292
 	 * @throws Throwable
293 293
 	 */
294 294
 	public function transaction(callable $callback) {
295
-		if(!$this->pdo->inTransaction()) {
295
+		if (!$this->pdo->inTransaction()) {
296 296
 			$this->transactionStart();
297 297
 			try {
298 298
 				$result = $callback($this);
299 299
 				$this->transactionCommit();
300 300
 				return $result;
301 301
 			} catch (Throwable $e) {
302
-				if($this->pdo->inTransaction()) {
302
+				if ($this->pdo->inTransaction()) {
303 303
 					$this->transactionRollback();
304 304
 				}
305 305
 				throw $e;
@@ -323,11 +323,11 @@  discard block
 block discarded – undo
323 323
 	 */
324 324
 	private function transactionEnd($fn): self {
325 325
 		$this->transactionLevel--;
326
-		if($this->transactionLevel < 0) {
326
+		if ($this->transactionLevel < 0) {
327 327
 			throw new RuntimeException("Transaction-Nesting-Problem: Trying to invoke commit on a already closed transaction");
328 328
 		}
329
-		if($this->transactionLevel < 1) {
330
-			if($this->outerTransaction) {
329
+		if ($this->transactionLevel < 1) {
330
+			if ($this->outerTransaction) {
331 331
 				$this->outerTransaction = false;
332 332
 			} else {
333 333
 				$fn();
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 	 */
345 345
 	private function buildQueryStatement(string $query, callable $fn): QueryStatement {
346 346
 		$stmt = $fn($query);
347
-		if(!$stmt) {
347
+		if (!$stmt) {
348 348
 			throw new RuntimeException("Could not execute statement:\n{$query}");
349 349
 		}
350 350
 		return new QueryStatement($stmt, $query, $this->exceptionInterpreter, $this->queryLoggers);
Please login to merge, or discard this patch.
src/Builder/Expr/DBExprFilter.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@  discard block
 block discarded – undo
30 30
 		$this->keyPath = $this->buildKey($keyPath);
31 31
 		$this->hasValue = RecursiveStructureAccess::recursiveHas($data, $this->keyPath);
32 32
 		$this->value = RecursiveStructureAccess::recursiveGet($data, $this->keyPath, null);
33
-		if($validator === null) {
33
+		if ($validator === null) {
34 34
 			$validator = function() {
35 35
 				return true;
36 36
 			};
37 37
 		}
38 38
 		$this->validator = $validator;
39
-		if($validationResultHandler === null) {
40
-			$validationResultHandler = static function () {};
39
+		if ($validationResultHandler === null) {
40
+			$validationResultHandler = static function() {};
41 41
 		}
42 42
 		$this->validationResultHandler = $validationResultHandler;
43 43
 	}
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
 	 * @return bool
54 54
 	 */
55 55
 	public function isValid(): bool {
56
-		if(!$this->hasValue) {
56
+		if (!$this->hasValue) {
57 57
 			return false;
58 58
 		}
59
-		if($this->validator !== null) {
59
+		if ($this->validator !== null) {
60 60
 			$result = call_user_func($this->validator, $this->value);
61 61
 			call_user_func($this->validationResultHandler, $result, [
62 62
 				'value' => $this->value,
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
 	 * @return string[]
80 80
 	 */
81 81
 	private function buildKey($keyPath): array {
82
-		if(is_string($keyPath)) {
82
+		if (is_string($keyPath)) {
83 83
 			$keyPath = explode('.', $keyPath);
84 84
 		}
85
-		if(!is_array($keyPath)) {
85
+		if (!is_array($keyPath)) {
86 86
 			throw new RuntimeException('Invalid key');
87 87
 		}
88 88
 		return $keyPath;
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
 	 * @return bool
94 94
 	 */
95 95
 	private function isValidArray(array $array): bool {
96
-		$data = array_filter($array, function ($value) {
97
-			if(is_array($value)) {
96
+		$data = array_filter($array, function($value) {
97
+			if (is_array($value)) {
98 98
 				return $this->isValidArray($value);
99 99
 			}
100 100
 			return (string) $value !== '';
Please login to merge, or discard this patch.
src/Builder/Expr/DBExprOrderBySpec.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -14,17 +14,17 @@  discard block
 block discarded – undo
14 14
 	 */
15 15
 	public function __construct(array $spec, array $sortFieldsSpec) {
16 16
 		$expressions = [];
17
-		foreach($spec as $specReference => $dbExpr) {
18
-			if(is_int($specReference)) {
17
+		foreach ($spec as $specReference => $dbExpr) {
18
+			if (is_int($specReference)) {
19 19
 				$specReference = $dbExpr;
20 20
 			}
21 21
 			$expressions[$specReference] = $dbExpr;
22 22
 		}
23
-		foreach($sortFieldsSpec as $sortFieldSpec) {
24
-			if(array_key_exists(0, $sortFieldSpec)) {
25
-				if(array_key_exists($sortFieldSpec[0], $expressions)) {
23
+		foreach ($sortFieldsSpec as $sortFieldSpec) {
24
+			if (array_key_exists(0, $sortFieldSpec)) {
25
+				if (array_key_exists($sortFieldSpec[0], $expressions)) {
26 26
 					$direction = 'ASC';
27
-					if(array_key_exists(1, $sortFieldSpec) && strtoupper($sortFieldSpec[1]) !== 'ASC') {
27
+					if (array_key_exists(1, $sortFieldSpec) && strtoupper($sortFieldSpec[1]) !== 'ASC') {
28 28
 						$direction = 'DESC';
29 29
 					}
30 30
 					$this->fields[] = [
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
 					];
34 34
 				}
35 35
 			} else { // @phpstan-ignore-line
36
-				foreach($sortFieldSpec as $alias => $direction) {
36
+				foreach ($sortFieldSpec as $alias => $direction) {
37 37
 					$direction = strtoupper($direction) === 'DESC' ? 'DESC' : 'ASC';
38
-					if(array_key_exists($alias, $expressions)) {
38
+					if (array_key_exists($alias, $expressions)) {
39 39
 						$this->fields[] = [$expressions[$alias], $direction];
40 40
 					}
41 41
 				}
Please login to merge, or discard this patch.
src/Builder/Expr/RequiredDBFilterMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 	 * @return DBExprFilter
37 37
 	 */
38 38
 	public function __invoke(string $expression, $keyPath, $validator = null) {
39
-		if(!RecursiveStructureAccess::recursiveHas($this->map, $keyPath)) {
39
+		if (!RecursiveStructureAccess::recursiveHas($this->map, $keyPath)) {
40 40
 			throw new RequiredValueNotFoundException(sprintf("Required value %s not found", json_encode($keyPath, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)));
41 41
 		}
42 42
 		return new DBExprFilter($expression, $this->map, $keyPath, $validator);
Please login to merge, or discard this patch.
src/Builder/Expr/DBOrderSpec.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,13 +41,13 @@
 block discarded – undo
41 41
 	public function getFields(): array {
42 42
 		$fields = [];
43 43
 		$max = $this->options['max_sort_instructions'] ?? 16;
44
-		foreach($this->sortingInstruction as $alias => $direction) {
44
+		foreach ($this->sortingInstruction as $alias => $direction) {
45 45
 			$direction = strtolower($direction) === 'desc' ? 'DESC' : 'ASC';
46
-			if(!array_key_exists($alias, $this->sortSpecification)) {
46
+			if (!array_key_exists($alias, $this->sortSpecification)) {
47 47
 				throw new DBSortAliasNotFoundException('Sorting: Alias for DB-Expression not found');
48 48
 			}
49 49
 			$fields[] = [$this->sortSpecification[$alias], $direction];
50
-			if($max < 1) {
50
+			if ($max < 1) {
51 51
 				throw new DBSortTooManyInstructionsException();
52 52
 			}
53 53
 			$max--;
Please login to merge, or discard this patch.
src/Builder/Helpers/RecursiveStructureAccess.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 		if (!$count) {
29 29
 			return $default;
30 30
 		}
31
-		foreach($arrayPath as $idxValue) {
31
+		foreach ($arrayPath as $idxValue) {
32 32
 			$part = $idxValue;
33
-			if(!array_key_exists($part, $data)) {
33
+			if (!array_key_exists($part, $data)) {
34 34
 				return $default;
35 35
 			}
36 36
 			$data = $data[$part];
@@ -45,14 +45,14 @@  discard block
 block discarded – undo
45 45
 	 */
46 46
 	private static function _recursiveHas($structure, array $path): bool {
47 47
 		$data = self::ensureArrayIsArray($structure);
48
-		if($data === null) {
48
+		if ($data === null) {
49 49
 			return false;
50 50
 		}
51
-		if(!count($path)) {
51
+		if (!count($path)) {
52 52
 			return false;
53 53
 		}
54 54
 		$key = array_shift($path);
55
-		if(count($path)) {
55
+		if (count($path)) {
56 56
 			return self::_recursiveHas($data[$key] ?? null, $path);
57 57
 		}
58 58
 		return array_key_exists($key, $data);
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 	 * @return array<int, string>
64 64
 	 */
65 65
 	private static function getArrayPath($path): array {
66
-		if(is_array($path)) {
66
+		if (is_array($path)) {
67 67
 			return $path;
68 68
 		}
69 69
 		$parts = preg_split('{(?<!\\x5C)(?:\\x5C\\x5C)*\\.}', $path);
70
-		if($parts === false) {
70
+		if ($parts === false) {
71 71
 			return [$path];
72 72
 		}
73 73
 		return $parts;
@@ -78,13 +78,13 @@  discard block
 block discarded – undo
78 78
 	 * @return array<mixed, mixed>
79 79
 	 */
80 80
 	private static function ensureArrayIsArray($array): ?array {
81
-		if($array instanceof ArrayObject) {
81
+		if ($array instanceof ArrayObject) {
82 82
 			return $array->getArrayCopy();
83 83
 		}
84
-		if(is_object($array)) {
84
+		if (is_object($array)) {
85 85
 			return (array) $array;
86 86
 		}
87
-		if(is_array($array)) {
87
+		if (is_array($array)) {
88 88
 			return $array;
89 89
 		}
90 90
 		return null;
Please login to merge, or discard this patch.
src/Builder/Value/DBOptionalValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
 	 * @return bool
28 28
 	 */
29 29
 	public function isValid(): bool {
30
-		if(!RecursiveStructureAccess::recursiveHas($this->data, $this->path)) {
30
+		if (!RecursiveStructureAccess::recursiveHas($this->data, $this->path)) {
31 31
 			return false;
32 32
 		}
33
-		if($this->validator !== null) {
33
+		if ($this->validator !== null) {
34 34
 			$value = $this->getValue();
35 35
 			return call_user_func($this->validator, $value);
36 36
 		}
Please login to merge, or discard this patch.
src/Builder/Traits/OffsetBuilder.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 	 * @return null|int
13 13
 	 */
14 14
 	protected function getOffset(): ?int {
15
-		if($this->offset instanceof OptionalValue) {
15
+		if ($this->offset instanceof OptionalValue) {
16 16
 			return $this->offset->getValue();
17 17
 		}
18 18
 		return $this->offset;
@@ -33,15 +33,15 @@  discard block
 block discarded – undo
33 33
 	 */
34 34
 	protected function buildOffset(string $query): string {
35 35
 		$offset = $this->getOffset();
36
-		if($this->offset instanceof OptionalValue) {
37
-			if($this->offset->isValid()) {
36
+		if ($this->offset instanceof OptionalValue) {
37
+			if ($this->offset->isValid()) {
38 38
 				$value = $this->offset->getValue();
39
-				if(!preg_match('{\\d+}', $value)) {
39
+				if (!preg_match('{\\d+}', $value)) {
40 40
 					throw new InvalidValueException('Value for OFFSET has to be a number');
41 41
 				}
42 42
 				$query .= "OFFSET\n\t{$this->offset->getValue()}\n";
43 43
 			}
44
-		} elseif($offset !== null) {
44
+		} elseif ($offset !== null) {
45 45
 			$query .= "OFFSET\n\t{$this->offset}\n";
46 46
 		}
47 47
 		return $query;
Please login to merge, or discard this patch.
src/Builder/Traits/LimitBuilder.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 	 * @return null|int
13 13
 	 */
14 14
 	protected function getLimit(): ?int {
15
-		if($this->limit instanceof OptionalValue) {
15
+		if ($this->limit instanceof OptionalValue) {
16 16
 			return $this->limit->getValue();
17 17
 		}
18 18
 		return $this->limit;
@@ -34,18 +34,18 @@  discard block
 block discarded – undo
34 34
 	 */
35 35
 	protected function buildLimit(string $query, ?int $offset = null) {
36 36
 		$limit = $this->getLimit();
37
-		if($limit === null && $offset !== null) {
37
+		if ($limit === null && $offset !== null) {
38 38
 			$limit = '18446744073709551615';
39 39
 		}
40
-		if($this->limit instanceof OptionalValue) {
41
-			if($this->limit->isValid()) {
40
+		if ($this->limit instanceof OptionalValue) {
41
+			if ($this->limit->isValid()) {
42 42
 				$value = $this->limit->getValue();
43
-				if(!preg_match('{\\d+}', $value)) {
43
+				if (!preg_match('{\\d+}', $value)) {
44 44
 					throw new InvalidValueException('Value for LIMIT has to be a number');
45 45
 				}
46 46
 				$query .= "LIMIT\n\t{$this->limit->getValue()}\n";
47 47
 			}
48
-		} elseif($limit !== null) {
48
+		} elseif ($limit !== null) {
49 49
 			$query .= "LIMIT\n\t{$limit}\n";
50 50
 		}
51 51
 		return $query;
Please login to merge, or discard this patch.