Passed
Push — master ( 4cda13...c2b692 )
by John
31:15 queued 14:43
created
apps/dav/lib/CalDAV/CalendarImpl.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 		try {
172 172
 			$server->getServer()->createFile($fullCalendarFilename, $stream);
173 173
 		} catch (Conflict $e) {
174
-			throw new CalendarException('Could not create new calendar event: ' . $e->getMessage(), 0, $e);
174
+			throw new CalendarException('Could not create new calendar event: '.$e->getMessage(), 0, $e);
175 175
 		} finally {
176 176
 			fclose($stream);
177 177
 		}
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 		}
228 228
 		$iTipMessage->uid = isset($vEvent->{'UID'}) ? $vEvent->{'UID'}->getValue() : '';
229 229
 		$iTipMessage->component = 'VEVENT';
230
-		$iTipMessage->sequence = isset($vEvent->{'SEQUENCE'}) ? (int)$vEvent->{'SEQUENCE'}->getValue() : 0;
230
+		$iTipMessage->sequence = isset($vEvent->{'SEQUENCE'}) ? (int) $vEvent->{'SEQUENCE'}->getValue() : 0;
231 231
 		$iTipMessage->message = $vObject;
232 232
 		$server->server->emit('schedule', [$iTipMessage]);
233 233
 	}
Please login to merge, or discard this patch.