Passed
Pull Request — master (#95)
by Alessandro
02:29
created
src/Event/EventDispatcherCheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
 {
14 14
     public static function isPSR14Compliant(): bool
15 15
     {
16
-        return ! class_exists(Event::class) || class_exists(LegacyEventDispatcherProxy::class);
16
+        return !class_exists(Event::class) || class_exists(LegacyEventDispatcherProxy::class);
17 17
     }
18 18
 
19 19
     public static function shouldUseLegacyProxy(): bool
20 20
     {
21
-        return ! class_exists(Event::class) && class_exists(LegacyEventDispatcherProxy::class);
21
+        return !class_exists(Event::class) && class_exists(LegacyEventDispatcherProxy::class);
22 22
     }
23 23
 }
Please login to merge, or discard this patch.