Skip to content

Commit 1e866e9

Browse files
committed
Fix CS
1 parent 16178c6 commit 1e866e9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Debug/TraceableEventDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public function hasListeners($eventName = null)
133133
*
134134
* @param string|null $eventName
135135
*/
136-
public function dispatch($event/*, string $eventName = null*/)
136+
public function dispatch($event/* , string $eventName = null */)
137137
{
138138
if (null === $this->callStack) {
139139
$this->callStack = new \SplObjectStorage();

EventDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function __construct()
4848
*
4949
* @param string|null $eventName
5050
*/
51-
public function dispatch($event/*, string $eventName = null*/)
51+
public function dispatch($event/* , string $eventName = null */)
5252
{
5353
$eventName = 1 < \func_num_args() ? func_get_arg(1) : null;
5454

ImmutableEventDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function __construct(EventDispatcherInterface $dispatcher)
3030
*
3131
* @param string|null $eventName
3232
*/
33-
public function dispatch($event/*, string $eventName = null */)
33+
public function dispatch($event/* , string $eventName = null */)
3434
{
3535
$eventName = 1 < \func_num_args() ? func_get_arg(1) : null;
3636

LegacyEventDispatcherProxy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static function decorate(?ContractsEventDispatcherInterface $dispatcher):
5353
*
5454
* @return object
5555
*/
56-
public function dispatch($event/*, string $eventName = null*/)
56+
public function dispatch($event/* , string $eventName = null */)
5757
{
5858
$eventName = 1 < \func_num_args() ? func_get_arg(1) : null;
5959

0 commit comments

Comments
 (0)