diff --git a/src/Entity/Question.php b/src/Entity/Question.php
index 93d4f4c4fd7f7bebb488a13496df59791f5cbf29..c3b11919985825ad6393fd65dee183a1629a5d3f 100644
--- a/src/Entity/Question.php
+++ b/src/Entity/Question.php
@@ -1,7 +1,6 @@
 <?php
 
 namespace App\Entity;
-
 use App\Repository\QuestionRepository;
 use Doctrine\Common\Collections\ArrayCollection;
 use Doctrine\Common\Collections\Collection;
@@ -22,7 +21,7 @@ class Question
     private ?string $typeQuestion = null;
 
     #[ORM\ManyToOne(inversedBy: 'questions')]
-    private ?dimension $dimension = null;
+    private ?Dimension $dimension = null;
 
     /**
      * @var Collection<int, ReponsePossible>
@@ -71,12 +70,12 @@ class Question
         return $this;
     }
 
-    public function getDimension(): ?dimension
+    public function getDimension(): ?Dimension
     {
         return $this->dimension;
     }
 
-    public function setDimension(?dimension $dimension): static
+    public function setDimension(?Dimension $dimension): static
     {
         $this->dimension = $dimension;
 
diff --git a/src/Entity/ReponsePossible.php b/src/Entity/ReponsePossible.php
index a64a99dd61523617710841998a7d0cefb6883000..ee1f43ae8789342ced16f3b09c732caeb26147a0 100644
--- a/src/Entity/ReponsePossible.php
+++ b/src/Entity/ReponsePossible.php
@@ -21,7 +21,7 @@ class ReponsePossible
 
     #[ORM\ManyToOne(inversedBy: 'reponsePossibles')]
     #[ORM\JoinColumn(nullable: false)]
-    private ?question $question = null;
+    private ?Question $question = null;
 
     public function getId(): ?int
     {
@@ -52,12 +52,12 @@ class ReponsePossible
         return $this;
     }
 
-    public function getQuestion(): ?question
+    public function getQuestion(): ?Question
     {
         return $this->question;
     }
 
-    public function setQuestion(?question $question): static
+    public function setQuestion(?Question $question): static
     {
         $this->question = $question;
 
diff --git a/src/Entity/ReponseUtilisateur.php b/src/Entity/ReponseUtilisateur.php
index 71b8b29a7c69d2212c1715dccfd37f5e5bc343bb..b6b9e56a69953e82a5fd20c649c11493eb4092a1 100644
--- a/src/Entity/ReponseUtilisateur.php
+++ b/src/Entity/ReponseUtilisateur.php
@@ -19,11 +19,11 @@ class ReponseUtilisateur
 
     #[ORM\ManyToOne(inversedBy: 'reponses')]
     #[ORM\JoinColumn(nullable: false)]
-    private ?test $test = null;
+    private ?Test $test = null;
 
     #[ORM\ManyToOne(inversedBy: 'reponseUtilisateurs')]
     #[ORM\JoinColumn(nullable: false)]
-    private ?question $question = null;
+    private ?Question $question = null;
 
     #[ORM\ManyToOne]
     private ?ReponsePossible $reponse = null;
@@ -45,24 +45,24 @@ class ReponseUtilisateur
         return $this;
     }
 
-    public function getTest(): ?test
+    public function getTest(): ?Test
     {
         return $this->test;
     }
 
-    public function setTest(?test $test): static
+    public function setTest(?Test $test): static
     {
         $this->test = $test;
 
         return $this;
     }
 
-    public function getQuestion(): ?question
+    public function getQuestion(): ?Question
     {
         return $this->question;
     }
 
-    public function setQuestion(?question $question): static
+    public function setQuestion(?Question $question): static
     {
         $this->question = $question;
 
diff --git a/src/Entity/Test.php b/src/Entity/Test.php
index b4aefab497cdc272078f994aaba7c7bca3f06cde..c15e0b9fd5e763bc5c6854a822f1ca6bf6e97f89 100644
--- a/src/Entity/Test.php
+++ b/src/Entity/Test.php
@@ -24,7 +24,7 @@ class Test
 
     #[ORM\ManyToOne(inversedBy: 'tests')]
     #[ORM\JoinColumn(nullable: false)]
-    private ?usager $usager = null;
+    private ?Usager $usager = null;
 
     /**
      * @var Collection<int, ReponseUtilisateur>
@@ -66,12 +66,12 @@ class Test
         return $this;
     }
 
-    public function getUsager(): ?usager
+    public function getUsager(): ?Usager
     {
         return $this->usager;
     }
 
-    public function setUsager(?usager $usager): static
+    public function setUsager(?Usager $usager): static
     {
         $this->usager = $usager;
 
diff --git a/src/Entity/Usager.php b/src/Entity/Usager.php
index e5b6162966d07f3f9834bce1c2e66b7845c0b7df..a3840221551a0224ffefba82a34714ea3445730d 100644
--- a/src/Entity/Usager.php
+++ b/src/Entity/Usager.php
@@ -7,6 +7,7 @@ use Doctrine\Common\Collections\ArrayCollection;
 use Doctrine\Common\Collections\Collection;
 use Doctrine\DBAL\Types\Types;
 use Doctrine\ORM\Mapping as ORM;
+use App\Entity\User;
 
 #[ORM\Entity(repositoryClass: UsagerRepository::class)]
 class Usager
@@ -36,7 +37,7 @@ class Usager
 
     #[ORM\ManyToOne(inversedBy: 'usagers')]
     #[ORM\JoinColumn(nullable: false)]
-    private ?user $conseiller = null;
+    private ?User $conseiller = null;
 
     /**
      * @var Collection<int, Test>
@@ -126,12 +127,12 @@ class Usager
         return $this;
     }
 
-    public function getConseiller(): ?user
+    public function getConseiller(): ?User
     {
         return $this->conseiller;
     }
 
-    public function setConseiller(?user $conseiller): static
+    public function setConseiller(?User $conseiller): static
     {
         $this->conseiller = $conseiller;
 
diff --git a/src/Entity/User.php b/src/Entity/User.php
index d04976db690f3befe67dad42b9c2fd4620c245d8..bd195bb0402c35e237376bbb432ef2d903bcf7e7 100644
--- a/src/Entity/User.php
+++ b/src/Entity/User.php
@@ -38,7 +38,7 @@ class User
     private ?\DateTimeInterface $updatedAt = null;
 
     /**
-     * @var Collection<int, User>
+     * @var Collection<int, user>
      */
     #[ORM\OneToMany(targetEntity: self::class, mappedBy: 'parent')]
     private Collection $children;
@@ -145,7 +145,7 @@ class User
     }
 
     /**
-     * @return Collection<int, User>
+     * @return Collection<int, user>
      */
     public function getChildren(): Collection
     {
diff --git a/src/Form/QuestionType.php b/src/Form/QuestionType.php
index 17279321761997cbc8334385314ee946f4787e2e..1295e4c861bb8a9b089e0f93230b95211c432976 100644
--- a/src/Form/QuestionType.php
+++ b/src/Form/QuestionType.php
@@ -2,7 +2,7 @@
 
 namespace App\Form;
 
-use App\Entity\dimension;
+use App\Entity\Dimension;
 use App\Entity\Question;
 use Symfony\Bridge\Doctrine\Form\Type\EntityType;
 use Symfony\Component\Form\AbstractType;
diff --git a/src/Form/ReponsePossibleType.php b/src/Form/ReponsePossibleType.php
index 5a6265465e9f933f635841e9200feea9f2f72a20..be89648a8e0a5b8f6f07cb0c3d89f85e7ee9d3a2 100644
--- a/src/Form/ReponsePossibleType.php
+++ b/src/Form/ReponsePossibleType.php
@@ -2,7 +2,7 @@
 
 namespace App\Form;
 
-use App\Entity\question;
+use App\Entity\Question;
 use App\Entity\ReponsePossible;
 use Symfony\Bridge\Doctrine\Form\Type\EntityType;
 use Symfony\Component\Form\AbstractType;
diff --git a/src/Form/ReponseUtilisateurType.php b/src/Form/ReponseUtilisateurType.php
index 7bc630e4471bd152fbc3cf668f93c1f2c1b270d1..65b83b9c9c8c90d66d1a6e4818d66b8d88e206fa 100644
--- a/src/Form/ReponseUtilisateurType.php
+++ b/src/Form/ReponseUtilisateurType.php
@@ -2,10 +2,10 @@
 
 namespace App\Form;
 
-use App\Entity\question;
+use App\Entity\Question;
 use App\Entity\ReponsePossible;
 use App\Entity\ReponseUtilisateur;
-use App\Entity\test;
+use App\Entity\Test;
 use Symfony\Bridge\Doctrine\Form\Type\EntityType;
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\FormBuilderInterface;
diff --git a/src/Form/TestType.php b/src/Form/TestType.php
index 2aa5222c96ea0d3a73848e2ad8bcd84167946892..45027b162860bfe5b44d6c3e09109f45e9e0498e 100644
--- a/src/Form/TestType.php
+++ b/src/Form/TestType.php
@@ -3,7 +3,8 @@
 namespace App\Form;
 
 use App\Entity\Test;
-use App\Entity\usager;
+use App\Entity\Usager;
+
 use Symfony\Bridge\Doctrine\Form\Type\EntityType;
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\FormBuilderInterface;
diff --git a/src/Repository/UserRepository.php b/src/Repository/UserRepository.php
index b29153bdebc8c935907c000813740c61a20275d8..fb73aa93721beb3b17b4f5bc6b7b0ed5f1132478 100644
--- a/src/Repository/UserRepository.php
+++ b/src/Repository/UserRepository.php
@@ -7,17 +7,17 @@ use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
 use Doctrine\Persistence\ManagerRegistry;
 
 /**
- * @extends ServiceEntityRepository<User>
+ * @extends ServiceEntityRepository<user>
  */
 class UserRepository extends ServiceEntityRepository
 {
     public function __construct(ManagerRegistry $registry)
     {
-        parent::__construct($registry, User::class);
+        parent::__construct($registry, user::class);
     }
 
     //    /**
-    //     * @return User[] Returns an array of User objects
+    //     * @return user[] Returns an array of user objects
     //     */
     //    public function findByExampleField($value): array
     //    {
@@ -31,7 +31,7 @@ class UserRepository extends ServiceEntityRepository
     //        ;
     //    }
 
-    //    public function findOneBySomeField($value): ?User
+    //    public function findOneBySomeField($value): ?user
     //    {
     //        return $this->createQueryBuilder('u')
     //            ->andWhere('u.exampleField = :val')