Skip to content

Commit e0f559c

Browse files
committed
Fixed wrong property type and name in EventDispatcher
1 parent 90b17a0 commit e0f559c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/EventDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(EventDispatcherInterface $eventDispatcher)
3939
*
4040
* @return CreateTokenEvent
4141
*/
42-
public function createToken(string $purpose, string $user, array $payload): CreateTokenEvent
42+
public function createToken(string $purpose, $user, array $payload): CreateTokenEvent
4343
{
4444
$this->eventDispatcher->dispatch(
4545
$event = new CreateTokenEvent($purpose, $user, $payload)

0 commit comments

Comments
 (0)