WIP: Symfony 6 project remake #2

Draft
skobkin wants to merge 103 commits from symfony6_remake into master
2 changed files with 2 additions and 2 deletions
Showing only changes of commit cd908d33ee - Show all commits

View file

@ -9,7 +9,7 @@ use Symfony\Contracts\EventDispatcher\Event;
/** Dispatched when user subscribers list was changed */
class UserSubscribersUpdatedEvent extends Event
{
const NAME = 'app.user.subscribers_updated';
public const NAME = 'app.user.subscribers_updated';
/**
* @param User $user

View file

@ -9,7 +9,7 @@ use Symfony\Contracts\EventDispatcher\Event;
/** Dispatched when one or more users were renamed */
class UsersRenamedEvent extends Event
{
const NAME = 'app.users.renamed';
public const NAME = 'app.users.renamed';
/** @param UserRenameEvent[] $renames */
public function __construct(