Passed
Push — master ( b3cfa1...662ab9 )
by Blizzz
14:36 queued 11s
created
lib/private/Accounts/Account.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	}
67 67
 
68 68
 	public function getProperties(): array {
69
-		return array_filter($this->properties, function ($obj) {
69
+		return array_filter($this->properties, function($obj) {
70 70
 			return $obj instanceof IAccountProperty;
71 71
 		});
72 72
 	}
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 			$index = $obj->getName();
97 97
 			if ($this->isCollection($index)) {
98 98
 				$incrementals[$index] = ($incrementals[$index] ?? -1) + 1;
99
-				$index .= '#' . $incrementals[$index];
99
+				$index .= '#'.$incrementals[$index];
100 100
 			}
101 101
 			$result[$index] = $obj;
102 102
 		}
Please login to merge, or discard this patch.