Passed
Pull Request — master (#1277)
by René
03:50
created
lib/Service/CalendarService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 	 * @psalm-return list<array{name: mixed, key: mixed, displayColor: mixed, permissions: mixed}>
92 92
 	 */
93 93
 	public function getCalendars(): array {
94
-		$calendars =  [];
94
+		$calendars = [];
95 95
 		foreach ($this->calendars as $calendar) {
96 96
 			$calendars[] = [
97 97
 				'name' => $calendar->getDisplayName(),
Please login to merge, or discard this patch.
lib/Controller/PublicController.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@
 block discarded – undo
237 237
 	 * get complete poll
238 238
 	 * @NoAdminRequired
239 239
 	 */
240
-	private function buildPoll(): Array {
240
+	private function buildPoll(): array {
241 241
 		try {
242 242
 			$comments = $this->commentService->list($this->poll->getId());
243 243
 		} catch (Exception $e) {
Please login to merge, or discard this patch.
lib/Model/ContactGroup.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 	}
65 65
 
66 66
 	/**
67
-	* @return ContactGroup[]
67
+	 * @return ContactGroup[]
68 68
 	 */
69 69
 	public static function search(string $query = '') {
70 70
 		$contactGroups = [];
Please login to merge, or discard this patch.
lib/Model/UserGroupClass.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
 	}
172 172
 
173 173
 	/**
174
-	* @return UserGroupClass[]
174
+	 * @return UserGroupClass[]
175 175
 	 */
176 176
 	public static function search() {
177 177
 		return [];
Please login to merge, or discard this patch.
lib/Model/Circle.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	}
63 63
 
64 64
 	/**
65
-	* @return Circle[]
65
+	 * @return Circle[]
66 66
 	 */
67 67
 	public static function search(string $query = '', $skip = []) {
68 68
 		$circles = [];
Please login to merge, or discard this patch.
lib/Model/Contact.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
 	}
137 137
 
138 138
 	/**
139
-	* @return Contact[]
139
+	 * @return Contact[]
140 140
 	 */
141 141
 	public static function search(string $query = '', $queryRange = ['FN', 'EMAIL', 'ORG', 'CATEGORIES']) {
142 142
 		$contacts = [];
Please login to merge, or discard this patch.