Completed
Push — master ( c55ff2...56c3cb )
by András
31s
created
src/Contracts/EventListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
      * @param array $arguments
10 10
      * @return void
11 11
      */
12
-    public function onEventReceived(string $event, array $arguments = []);
12
+    public function onEventReceived(string $event, array $arguments = [ ]);
13 13
 
14 14
     /**
15 15
      * @return string
Please login to merge, or discard this patch.
src/AbstractModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * @var array
53 53
      */
54
-    protected $authors = [];
54
+    protected $authors = [ ];
55 55
 
56 56
     /**
57 57
      * @var string
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
         return $this->isCore;
184 184
     }
185 185
 
186
-    public function onEventReceived(string $event, array $arguments = [])
186
+    public function onEventReceived(string $event, array $arguments = [ ])
187 187
     {
188 188
         $signature = 'on'.ucfirst($event);
189 189
         if (method_exists($this, $signature)) {
Please login to merge, or discard this patch.