Passed
Push — master ( 13c7a9...8fcc0e )
by Christoph
15:42 queued 11s
created
apps/workflowengine/lib/Settings/ASettings.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -146,8 +146,8 @@  discard block
 block discarded – undo
146 146
 	}
147 147
 
148 148
 	private function entitiesToArray(array $entities) {
149
-		return array_map(function (IEntity $entity) {
150
-			$events = array_map(function (IEntityEvent $entityEvent) {
149
+		return array_map(function(IEntity $entity) {
150
+			$events = array_map(function(IEntityEvent $entityEvent) {
151 151
 				return [
152 152
 					'eventName' => $entityEvent->getEventName(),
153 153
 					'displayName' => $entityEvent->getDisplayName()
@@ -164,11 +164,11 @@  discard block
 block discarded – undo
164 164
 	}
165 165
 
166 166
 	private function operatorsToArray(array $operators) {
167
-		$operators = array_filter($operators, function (IOperation $operator) {
167
+		$operators = array_filter($operators, function(IOperation $operator) {
168 168
 			return $operator->isAvailableForScope($this->getScope());
169 169
 		});
170 170
 
171
-		return array_map(function (IOperation $operator) {
171
+		return array_map(function(IOperation $operator) {
172 172
 			return [
173 173
 				'id' => get_class($operator),
174 174
 				'icon' => $operator->getIcon(),
@@ -182,11 +182,11 @@  discard block
 block discarded – undo
182 182
 	}
183 183
 
184 184
 	private function checksToArray(array $checks) {
185
-		$checks = array_filter($checks, function (ICheck $check) {
185
+		$checks = array_filter($checks, function(ICheck $check) {
186 186
 			return $check->isAvailableForScope($this->getScope());
187 187
 		});
188 188
 
189
-		return array_map(function (ICheck $check) {
189
+		return array_map(function(ICheck $check) {
190 190
 			return [
191 191
 				'id' => get_class($check),
192 192
 				'supportedEntities' => $check->supportedEntities(),
Please login to merge, or discard this patch.
lib/private/Authentication/TwoFactorAuth/ProviderSet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 	 * @return IProvider[]
73 73
 	 */
74 74
 	public function getPrimaryProviders(): array {
75
-		return array_filter($this->providers, function (IProvider $provider) {
75
+		return array_filter($this->providers, function(IProvider $provider) {
76 76
 			return !($provider instanceof BackupCodesProvider);
77 77
 		});
78 78
 	}
Please login to merge, or discard this patch.
lib/private/SystemTag/SystemTagObjectMapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 		$result->closeCursor();
242 242
 
243 243
 		if ($all) {
244
-			return ((int)$row[0] === \count($objIds));
244
+			return ((int) $row[0] === \count($objIds));
245 245
 		}
246 246
 
247 247
 		return (bool) $row;
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 		if (\count($tags) !== \count($tagIds)) {
260 260
 			// at least one tag missing, bail out
261 261
 			$foundTagIds = array_map(
262
-				function (ISystemTag $tag) {
262
+				function(ISystemTag $tag) {
263 263
 					return $tag->getId();
264 264
 				},
265 265
 				$tags
Please login to merge, or discard this patch.
lib/private/Accounts/Account.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 	}
61 61
 
62 62
 	public function getFilteredProperties(string $scope = null, string $verified = null): array {
63
-		return \array_filter($this->properties, function (IAccountProperty $obj) use ($scope, $verified) {
63
+		return \array_filter($this->properties, function(IAccountProperty $obj) use ($scope, $verified) {
64 64
 			if ($scope !== null && $scope !== $obj->getScope()) {
65 65
 				return false;
66 66
 			}
Please login to merge, or discard this patch.
lib/private/Collaboration/Resources/Listener.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 class Listener {
37 37
 
38 38
 	public static function register(EventDispatcherInterface $dispatcher): void {
39
-		$listener = function (GenericEvent $event) {
39
+		$listener = function(GenericEvent $event) {
40 40
 			/** @var IUser $user */
41 41
 			$user = $event->getArgument('user');
42 42
 			/** @var IManager $resourceManager */
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
 
45 45
 			$resourceManager->invalidateAccessCacheForUser($user);
46 46
 		};
47
-		$dispatcher->addListener(IGroup::class . '::postAddUser', $listener);
48
-		$dispatcher->addListener(IGroup::class . '::postRemoveUser', $listener);
47
+		$dispatcher->addListener(IGroup::class.'::postAddUser', $listener);
48
+		$dispatcher->addListener(IGroup::class.'::postRemoveUser', $listener);
49 49
 
50
-		$dispatcher->addListener(IUser::class . '::postDelete', function (GenericEvent $event) {
50
+		$dispatcher->addListener(IUser::class.'::postDelete', function(GenericEvent $event) {
51 51
 			/** @var IUser $user */
52 52
 			$user = $event->getSubject();
53 53
 			/** @var IManager $resourceManager */
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 			$resourceManager->invalidateAccessCacheForUser($user);
57 57
 		});
58 58
 
59
-		$dispatcher->addListener(IGroup::class . '::preDelete', function (GenericEvent $event) {
59
+		$dispatcher->addListener(IGroup::class.'::preDelete', function(GenericEvent $event) {
60 60
 			/** @var IGroup $group */
61 61
 			$group = $event->getSubject();
62 62
 			/** @var IManager $resourceManager */
Please login to merge, or discard this patch.
lib/private/Collaboration/Resources/Collection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	 * @since 16.0.0
127 127
 	 */
128 128
 	public function addResource(IResource $resource): void {
129
-		array_map(function (IResource $r) use ($resource) {
129
+		array_map(function(IResource $r) use ($resource) {
130 130
 			if ($this->isSameResource($r, $resource)) {
131 131
 				throw new ResourceException('Already part of the collection');
132 132
 			}
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 	 * @since 16.0.0
159 159
 	 */
160 160
 	public function removeResource(IResource $resource): void {
161
-		$this->resources = array_filter($this->getResources(), function (IResource $r) use ($resource) {
161
+		$this->resources = array_filter($this->getResources(), function(IResource $r) use ($resource) {
162 162
 			return !$this->isSameResource($r, $resource);
163 163
 		});
164 164
 
Please login to merge, or discard this patch.
lib/public/Accounts/PropertyDoesNotExistException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 	 * @since 15.0.0
39 39
 	 */
40 40
 	public function __construct($property) {
41
-		parent::__construct('Property ' . $property . ' does not exist.');
41
+		parent::__construct('Property '.$property.' does not exist.');
42 42
 	}
43 43
 
44 44
 }
Please login to merge, or discard this patch.
lib/public/AppFramework/Http/Template/PublicTemplateResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
 			}
99 99
 			$this->headerActions[] = $action;
100 100
 		}
101
-		usort($this->headerActions, function (IMenuAction $a, IMenuAction $b) {
101
+		usort($this->headerActions, function(IMenuAction $a, IMenuAction $b) {
102 102
 			return $a->getPriority() > $b->getPriority();
103 103
 		});
104 104
 	}
Please login to merge, or discard this patch.
lib/public/Files.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 	 * @deprecated 14.0.0
91 91
 	 */
92 92
 	public static function streamCopy($source, $target) {
93
-		list($count, ) = \OC_Helper::streamCopy($source, $target);
93
+		list($count,) = \OC_Helper::streamCopy($source, $target);
94 94
 		return $count;
95 95
 	}
96 96
 
Please login to merge, or discard this patch.