Commit 731250e3 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

[FIX] AbstratUser et User : doit être protected

parent bf700487
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ abstract class AbstractUser implements UserInterface, ProviderInterface, Recherc
    /**
     * @var RoleInterface
     */
    private $lastRole;
    protected $lastRole;

    /**
     * @var ArrayCollection
+1 −1
Original line number Diff line number Diff line
@@ -7,6 +7,6 @@ class User extends AbstractUser
    /**
     * @var RoleInterface
     */
    private $lastRole;
    protected $lastRole;
}