Passed
Push — master ( 8a229d...09e6b2 )
by Morris
24:02 queued 11:48
created
lib/public/ILogger.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -46,27 +46,27 @@
 block discarded – undo
46 46
 	 * @since 14.0.0
47 47
 	 * @deprecated 20.0.0
48 48
 	 */
49
-	public const DEBUG=0;
49
+	public const DEBUG = 0;
50 50
 	/**
51 51
 	 * @since 14.0.0
52 52
 	 * @deprecated 20.0.0
53 53
 	 */
54
-	public const INFO=1;
54
+	public const INFO = 1;
55 55
 	/**
56 56
 	 * @since 14.0.0
57 57
 	 * @deprecated 20.0.0
58 58
 	 */
59
-	public const WARN=2;
59
+	public const WARN = 2;
60 60
 	/**
61 61
 	 * @since 14.0.0
62 62
 	 * @deprecated 20.0.0
63 63
 	 */
64
-	public const ERROR=3;
64
+	public const ERROR = 3;
65 65
 	/**
66 66
 	 * @since 14.0.0
67 67
 	 * @deprecated 20.0.0
68 68
 	 */
69
-	public const FATAL=4;
69
+	public const FATAL = 4;
70 70
 
71 71
 	/**
72 72
 	 * System is unusable.
Please login to merge, or discard this patch.
apps/contactsinteraction/lib/Listeners/ContactInteractionListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
 				$contact->setCard($parsed->serialize());
127 127
 			} catch (Throwable $e) {
128 128
 				$this->logger->warning(
129
-					'Could not parse card to add recent category: ' . $e->getMessage(),
129
+					'Could not parse card to add recent category: '.$e->getMessage(),
130 130
 					[
131 131
 						'exception' => $e,
132 132
 					]);
Please login to merge, or discard this patch.