@@ -9,7 +9,7 @@ |
||
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 |
@@ -51,7 +51,7 @@ discard block |
||
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 |
||
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)) { |