Skip to content

Commit

Permalink
test: Allow testing on php 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
roadiz-ci committed Nov 22, 2024
1 parent bc95777 commit 076c327
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/EventSubscriber/UserSignedUpSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
use RZ\Roadiz\UserBundle\Manager\UserValidationTokenManagerInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

final class UserSignedUpSubscriber implements EventSubscriberInterface
final readonly class UserSignedUpSubscriber implements EventSubscriberInterface
{
public function __construct(
private readonly UserValidationTokenManagerInterface $userValidationTokenManager,
private UserValidationTokenManagerInterface $userValidationTokenManager,
) {
}

Expand Down
4 changes: 2 additions & 2 deletions src/Manager/UserMetadataManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
use RZ\Roadiz\CoreBundle\Entity\User;
use RZ\Roadiz\UserBundle\Entity\UserMetadata;

class UserMetadataManager implements UserMetadataManagerInterface
readonly class UserMetadataManager implements UserMetadataManagerInterface
{
public function __construct(private readonly ManagerRegistry $managerRegistry)
public function __construct(private ManagerRegistry $managerRegistry)
{
}

Expand Down

0 comments on commit 076c327

Please sign in to comment.