Commit 91957463 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Adaptation php8.4

parent 933bdaa4
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ class RoleControllerFactory {
     * @throws ContainerExceptionInterface
     * @throws NotFoundExceptionInterface
     */
    public function __invoke(ContainerInterface $container, string $requestedName, array $options = null)
    public function __invoke(ContainerInterface $container, string $requestedName, ?array $options = null)
    {
        /**
         * @var RoleService $roleService
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ class UtilisateurControllerFactory
     * @throws ContainerExceptionInterface
     * @throws NotFoundExceptionInterface
     */
    public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): UtilisateurController
    public function __invoke(ContainerInterface $container, string $requestedName, ?array $options = null): UtilisateurController
    {
        /**
         * @var RoleService $roleService
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ class RoleFormFactory
     * @param array|null $options
     * @return RoleForm|object
     */
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
    public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null)
    {
        /**
         * @var EntityManager $entityManager
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ class UserFormFactory
     * @param array|null $options
     * @return UserForm|object
     */
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
    public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null)
    {
        /**
         * @var EntityManager $entityManager
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ class HistoriqueListenerFactory
     * @throws \Psr\Container\NotFoundExceptionInterface
     * @throws \Psr\Container\ContainerExceptionInterface
     */
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null): HistoriqueListener
    public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null): HistoriqueListener
    {
        /** @var AuthenticationService $authenticationService */
        $authenticationService = $container->get('Laminas\Authentication\AuthenticationService');
Loading