Completed
Push — master ( 672e4f...e22914 )
by Maxence
21:09 queued 14s
created
core/Command/TwoFactorAuth/Enforce.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,10 +98,10 @@
 block discarded – undo
98 98
 		if (empty($state->getEnforcedGroups())) {
99 99
 			$message = 'Two-factor authentication is enforced for all users';
100 100
 		} else {
101
-			$message = 'Two-factor authentication is enforced for members of the group(s) ' . implode(', ', $state->getEnforcedGroups());
101
+			$message = 'Two-factor authentication is enforced for members of the group(s) '.implode(', ', $state->getEnforcedGroups());
102 102
 		}
103 103
 		if (!empty($state->getExcludedGroups())) {
104
-			$message .= ', except members of ' . implode(', ', $state->getExcludedGroups());
104
+			$message .= ', except members of '.implode(', ', $state->getExcludedGroups());
105 105
 		}
106 106
 		$output->writeln($message);
107 107
 	}
Please login to merge, or discard this patch.
apps/dav/lib/CalDAV/Outbox.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -74,12 +74,12 @@  discard block
 block discarded – undo
74 74
 			],
75 75
 			[
76 76
 				'privilege' => '{DAV:}read',
77
-				'principal' => $this->getOwner() . '/calendar-proxy-read',
77
+				'principal' => $this->getOwner().'/calendar-proxy-read',
78 78
 				'protected' => true,
79 79
 			],
80 80
 			[
81 81
 				'privilege' => '{DAV:}read',
82
-				'principal' => $this->getOwner() . '/calendar-proxy-write',
82
+				'principal' => $this->getOwner().'/calendar-proxy-write',
83 83
 				'protected' => true,
84 84
 			],
85 85
 		];
@@ -94,23 +94,23 @@  discard block
 block discarded – undo
94 94
 		if ($this->disableFreeBusy) {
95 95
 			return array_merge($commonAcl, [
96 96
 				[
97
-					'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-invite',
97
+					'privilege' => '{'.CalDAVPlugin::NS_CALDAV.'}schedule-send-invite',
98 98
 					'principal' => $this->getOwner(),
99 99
 					'protected' => true,
100 100
 				],
101 101
 				[
102
-					'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-invite',
103
-					'principal' => $this->getOwner() . '/calendar-proxy-write',
102
+					'privilege' => '{'.CalDAVPlugin::NS_CALDAV.'}schedule-send-invite',
103
+					'principal' => $this->getOwner().'/calendar-proxy-write',
104 104
 					'protected' => true,
105 105
 				],
106 106
 				[
107
-					'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-reply',
107
+					'privilege' => '{'.CalDAVPlugin::NS_CALDAV.'}schedule-send-reply',
108 108
 					'principal' => $this->getOwner(),
109 109
 					'protected' => true,
110 110
 				],
111 111
 				[
112
-					'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send-reply',
113
-					'principal' => $this->getOwner() . '/calendar-proxy-write',
112
+					'privilege' => '{'.CalDAVPlugin::NS_CALDAV.'}schedule-send-reply',
113
+					'principal' => $this->getOwner().'/calendar-proxy-write',
114 114
 					'protected' => true,
115 115
 				],
116 116
 			]);
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
 
119 119
 		return array_merge($commonAcl, [
120 120
 			[
121
-				'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send',
121
+				'privilege' => '{'.CalDAVPlugin::NS_CALDAV.'}schedule-send',
122 122
 				'principal' => $this->getOwner(),
123 123
 				'protected' => true,
124 124
 			],
125 125
 			[
126
-				'privilege' => '{' . CalDAVPlugin::NS_CALDAV . '}schedule-send',
127
-				'principal' => $this->getOwner() . '/calendar-proxy-write',
126
+				'privilege' => '{'.CalDAVPlugin::NS_CALDAV.'}schedule-send',
127
+				'principal' => $this->getOwner().'/calendar-proxy-write',
128 128
 				'protected' => true,
129 129
 			],
130 130
 		]);
Please login to merge, or discard this patch.
apps/files_trashbin/lib/Sabre/TrashRoot.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 	public function getChildren(): array {
68 68
 		$entries = $this->trashManager->listTrashRoot($this->user);
69 69
 
70
-		$children = array_map(function (ITrashItem $entry) {
70
+		$children = array_map(function(ITrashItem $entry) {
71 71
 			if ($entry->getType() === FileInfo::TYPE_FOLDER) {
72 72
 				return new TrashFolder($this->trashManager, $entry);
73 73
 			}
Please login to merge, or discard this patch.
apps/files_trashbin/lib/Sabre/AbstractTrashFolder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	public function getChildren(): array {
33 33
 		$entries = $this->trashManager->listTrashFolder($this->data);
34 34
 
35
-		$children = array_map(function (ITrashItem $entry) {
35
+		$children = array_map(function(ITrashItem $entry) {
36 36
 			if ($entry->getType() === FileInfo::TYPE_FOLDER) {
37 37
 				return new TrashFolderFolder($this->trashManager, $entry);
38 38
 			}
Please login to merge, or discard this patch.
apps/files_versions/lib/Sabre/VersionCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	public function getChildren(): array {
79 79
 		$versions = $this->versionManager->getVersionsForFile($this->user, $this->file);
80 80
 
81
-		return array_map(function (IVersion $version) {
81
+		return array_map(function(IVersion $version) {
82 82
 			return new VersionFile($version, $this->versionManager);
83 83
 		}, $versions);
84 84
 	}
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	}
98 98
 
99 99
 	public function getName(): string {
100
-		return (string)$this->file->getId();
100
+		return (string) $this->file->getId();
101 101
 	}
102 102
 
103 103
 	public function setName($name) {
Please login to merge, or discard this patch.
apps/user_ldap/lib/Command/ShowRemnants.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,8 +89,8 @@
 block discarded – undo
89 89
 				'displayName' => $user->getDisplayName(),
90 90
 				'uid' => $user->getUID(),
91 91
 				'dn' => $user->getDN(),
92
-				'lastLogin' => $this->formatDate($user->getLastLogin(), '-', (bool)$input->getOption('short-date')),
93
-				'detectedOn' => $this->formatDate($user->getDetectedOn(), 'unknown', (bool)$input->getOption('short-date')),
92
+				'lastLogin' => $this->formatDate($user->getLastLogin(), '-', (bool) $input->getOption('short-date')),
93
+				'detectedOn' => $this->formatDate($user->getDetectedOn(), 'unknown', (bool) $input->getOption('short-date')),
94 94
 				'homePath' => $user->getHomePath(),
95 95
 				'sharer' => $user->getHasActiveShares() ? 'Y' : 'N',
96 96
 			];
Please login to merge, or discard this patch.
apps/dav/lib/Provisioning/Apple/AppleProvisioningNode.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
 
53 53
 	public function setName($name) {
54
-		throw new Forbidden('Renaming ' . self::FILENAME . ' is forbidden');
54
+		throw new Forbidden('Renaming '.self::FILENAME.' is forbidden');
55 55
 	}
56 56
 
57 57
 	/**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	 * @throws Forbidden
66 66
 	 */
67 67
 	public function delete() {
68
-		throw new Forbidden(self::FILENAME . ' may not be deleted.');
68
+		throw new Forbidden(self::FILENAME.' may not be deleted.');
69 69
 	}
70 70
 
71 71
 	/**
@@ -86,6 +86,6 @@  discard block
 block discarded – undo
86 86
 	 * @throws Forbidden
87 87
 	 */
88 88
 	public function propPatch(PropPatch $propPatch) {
89
-		throw new Forbidden(self::FILENAME . '\'s properties may not be altered.');
89
+		throw new Forbidden(self::FILENAME.'\'s properties may not be altered.');
90 90
 	}
91 91
 }
Please login to merge, or discard this patch.
lib/private/FullTextSearch/Model/IndexDocument.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -389,7 +389,7 @@
 block discarded – undo
389 389
 		foreach ($ak as $source) {
390 390
 			$tags = $this->subTags[$source];
391 391
 			foreach ($tags as $tag) {
392
-				$subTags[] = $source . '_' . $tag;
392
+				$subTags[] = $source.'_'.$tag;
393 393
 			}
394 394
 		}
395 395
 
Please login to merge, or discard this patch.
apps/twofactor_backupcodes/lib/Listener/ProviderDisabled.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 		$providers = $this->registry->getProviderStates($event->getUser());
54 54
 
55 55
 		// Loop over all providers. If all are disabled we remove the job
56
-		$state = array_reduce($providers, function (bool $carry, bool $enabled) {
56
+		$state = array_reduce($providers, function(bool $carry, bool $enabled) {
57 57
 			return $carry || $enabled;
58 58
 		}, false);
59 59
 
Please login to merge, or discard this patch.