Browse Source

Passage de doctrine en attribute

François Drouhard 2 years ago
parent
commit
6fab1fb4d5

+ 1 - 1
composer.json

@@ -42,7 +42,7 @@
         "symfony/browser-kit": "^5.4",
         "symfony/css-selector": "^5.4",
         "symfony/debug-bundle": "^5.4",
-        "symfony/maker-bundle": "^1.33",
+        "symfony/maker-bundle": "^1.47",
         "symfony/phpunit-bridge": "^5.4",
         "symfony/stopwatch": "^5.4",
         "symfony/var-dumper": "^5.4",

+ 1 - 1
composer.lock

@@ -4,7 +4,7 @@
         "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
         "This file is @generated automatically"
     ],
-    "content-hash": "5080b9fa73ef347b9701dee65d926ad9",
+    "content-hash": "4526c516ea41b4b30039392fe6ef0c77",
     "packages": [
         {
             "name": "composer/package-versions-deprecated",

+ 1 - 1
config/packages/doctrine.yaml

@@ -23,7 +23,7 @@ doctrine:
         mappings:
             App:
                 is_bundle: false
-                type: annotation
+                type: attribute
                 dir: '%kernel.project_dir%/src/Entity'
                 prefix: 'App\Entity'
                 alias: App

+ 17 - 85
src/Entity/Commentaire.php

@@ -2,82 +2,49 @@
 
 namespace App\Entity;
 
+use App\Repository\CommentaireRepository;
 use Doctrine\ORM\Mapping as ORM;
 
-/**
- * Commentaire
- *
- * @ORM\Table(name="commentaire")
- * @ORM\Entity(repositoryClass="App\Repository\CommentaireRepository")
- */
+#[ORM\Table(name: "commentaire")]
+#[ORM\Entity(repositoryClass: CommentaireRepository::class)]
 class Commentaire
 {
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="id", type="integer")
-     * @ORM\Id
-     * @ORM\GeneratedValue(strategy="AUTO")
-     */
+    #[ORM\Column(name: "id", type: "integer")]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: "AUTO")]
+
     private $id;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="contenu", type="text", length=191, nullable=true)
-     */
+    #[ORM\Column(name: "contenu", type: "text", length: 191, nullable: true)]
     private $contenu;
 
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="note", type="integer", nullable=true)
-     *
-     */
+    #[ORM\Column(name: "note", type: "integer", nullable: true)]
+
     private $note;
 
-    /**
-     * @ORM\ManyToOne(targetEntity="App\Entity\Film", inversedBy="commentaires")
-     * @ORM\JoinColumn(nullable=false)
-     */
+    #[ORM\ManyToOne(targetEntity: Film::class, inversedBy: "commentaires")]
+    #[ORM\JoinColumn(nullable: false)]
+
     private $film;
 
-    /**
-     * @ORM\ManyToOne(targetEntity="App\Entity\User")
-     * @ORM\JoinColumn(nullable=false)
-     */
+    #[ORM\ManyToOne(targetEntity: User::class)]
+    #[ORM\JoinColumn(nullable: false)]
+
     private $user;
 
-    /**
-     * @ORM\Column(type="datetime", nullable=true)
-     */
+    #[ORM\Column(type: "datetime", nullable: true)]
     private $dateSubmitted;
 
-    /**
-     * Constructor
-     */
     public function __construct ()
     {
         $this->dateSubmitted = new \DateTime('now');
     }
 
-    /**
-     * Get id
-     *
-     * @return int
-     */
     public function getId()
     {
         return $this->id;
     }
 
-    /**
-     * Set contenu
-     *
-     * @param string $contenu
-     *
-     * @return Commentaire
-     */
     public function setContenu($contenu)
     {
         $this->contenu = $contenu;
@@ -85,39 +52,21 @@ class Commentaire
         return $this;
     }
 
-    /**
-     * Get contenu
-     *
-     * @return string
-     */
     public function getContenu()
     {
         return $this->contenu;
     }
 
-    /**
-     * @return int
-     */
     public function getNote()
     {
         return $this->note;
     }
 
-    /**
-     * @param int $note
-     */
     public function setNote($note)
     {
         $this->note = $note;
     }
 
-    /**
-     * Set film
-     *
-     * @param \App\Entity\Film $film
-     *
-     * @return Commentaire
-     */
     public function setFilm(\App\Entity\Film $film)
     {
         $this->film = $film;
@@ -125,23 +74,11 @@ class Commentaire
         return $this;
     }
 
-    /**
-     * Get film
-     *
-     * @return \App\Entity\Film
-     */
     public function getFilm()
     {
         return $this->film;
     }
 
-    /**
-     * Set user
-     *
-     * @param \App\Entity\User $user
-     *
-     * @return Commentaire
-     */
     public function setUser(\App\Entity\User $user)
     {
         $this->user = $user;
@@ -149,11 +86,6 @@ class Commentaire
         return $this;
     }
 
-    /**
-     * Get user
-     *
-     * @return \App\Entity\User
-     */
     public function getUser()
     {
         return $this->user;

+ 59 - 276
src/Entity/Film.php

@@ -2,199 +2,95 @@
 
 namespace App\Entity;
 
+use App\Repository\FilmRepository;
 use Doctrine\ORM\Mapping as ORM;
 use Symfony\Component\Validator\Constraints as Assert;
 
-
-/**
- * Film
- *
- * @ORM\Table(name="film")
- * @ORM\Entity(repositoryClass="App\Repository\FilmRepository")
- */
+#[ORM\Table(name: "film")]
+#[ORM\Entity(repositoryClass: FilmRepository::class)]
 class Film
 {
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="id", type="integer")
-     * @ORM\Id
-     * @ORM\GeneratedValue(strategy="AUTO")
-     */
+    #[ORM\Column(name: "id", type: "integer")]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: "AUTO")]
     private $id;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="titre", type="string", length=191)
-     */
+    #[ORM\Column(name: "titre", type: "string", length: 191)]
     private $titre;
 
-    /**
-     * @var \DateTime
-     *
-     * @ORM\Column(name="annee", type="date", nullable=true)
-     */
+    #[ORM\Column(name: "annee", type: "date", nullable: true)]
     private $annee;
 
-    /**
-     * @var \DateTime
-     *
-     * @ORM\Column(name="date_submited", type="datetime", nullable=true)
-     */
+    #[ORM\Column(name: "date_submited", type: "datetime", nullable: true)]
     private $dateSubmited;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="lien", type="string", length=191, nullable=true)
-     * @Assert\Url()
-     */
+    #[ORM\Column(name: "lien", type: "string", length: 191, nullable: true)]
+    #[Assert\Url()]
     private $lien;
 
-    /**
-     * @var float
-     *
-     * @ORM\Column(name="note", type="float", nullable=true)
-     */
+    #[ORM\Column(name: "note", type: "float", nullable: true)]
     private $note;
 
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="nb_coms", type="integer", nullable=true)
-     */
+    #[ORM\Column(name: "nb_coms", type: "integer", nullable: true)]
     private $nbComs;
 
-    /**
-     * @return \DateTime
-     */
-    public function getDateSubmited()
-    {
-        return $this->dateSubmited;
-    }
-
-    /**
-     * @param \DateTime $dateSubmited
-     */
-    public function setDateSubmited(\DateTime $dateSubmited)
-    {
-        $this->dateSubmited = $dateSubmited;
-    }
-
-    /**
-     * @return boolean
-     */
-    public function isNew()
-    {
-        $finNew = $this->getDateSubmited()->modify('+1 day');
-        return (new \DateTime('now') < $finNew);
-    }
-
-    /**
-     * @Assert\Valid()
-     * @ORM\OneToOne(targetEntity="App\Entity\MediaVideo", cascade={"persist","remove"})
-     * @ORM\JoinColumn(nullable=true)
-     */
+    #[Assert\Valid()]
+    #[ORM\OneToOne(targetEntity: MediaVideo::class, cascade: ["persist","remove"])]
+    #[ORM\JoinColumn(nullable: true)]
     private $mediaVideo;
 
-    /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\Realisateur", inversedBy="films", cascade={"persist"})
-     * @var \Doctrine\Common\Collections\Collection
-     */
+    #[ORM\ManyToMany(targetEntity: Realisateur::class, inversedBy: "films", cascade: ["persist"])]
     private $realisateurs;
 
-    /**
-     * @ORM\OneToMany(targetEntity="App\Entity\Commentaire", mappedBy="film", orphanRemoval=true)
-     * @var \Doctrine\Common\Collections\Collection
-     */
+    #[ORM\OneToMany(targetEntity: Commentaire::class, mappedBy: "film", orphanRemoval: true)]
     private $commentaires;
 
-    /**
-     * @ORM\ManyToOne(targetEntity="App\Entity\User")
-     * @ORM\JoinColumn(nullable=true)
-     */
+    #[ORM\ManyToOne(targetEntity: User::class)]
+    #[ORM\JoinColumn(nullable: true)]
     private $authered;
 
-    /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\User", inversedBy="films")
-     * @ORM\JoinTable(name="filmsavoir_users")
-     * @var \Doctrine\Common\Collections\Collection
-     */
+    #[ORM\ManyToMany(targetEntity: User::class, inversedBy: "films")]
+    #[ORM\JoinTable(name: "filmsavoir_users")]
     private $usersWantToView;
 
-    /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\User", inversedBy="filmsVus")
-     * @ORM\JoinTable(name="filmsvus_users")
-     * @var \Doctrine\Common\Collections\Collection
-     */
+    #[ORM\ManyToMany(targetEntity: User::class, inversedBy: "filmsVus")]
+    #[ORM\JoinTable(name: "filmsvus_users")]
     private $usersWhoSeen;
 
-    /**
-     * @return \App\Entity\MediaVideo $mediaVideo
-     */
-    public function getMediaVideo()
-    {
-        return $this->mediaVideo;
-    }
-
-    /**
-     * @param \App\Entity\MediaVideo $mediaVideo
-     */
-    public function setMediaVideo(MediaVideo $mediaVideo = null)
-    {
-        $this->mediaVideo = $mediaVideo;
-    }
-
-    /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\Genre", cascade={"persist"})
-     * @var \Doctrine\Common\Collections\Collection
-     */
+    #[ORM\ManyToMany(targetEntity: Genre::class, cascade: ["persist"])]
     private $genres;
 
-    /**
-     * @ORM\Column(type="text", nullable=true)
-     */
+    #[ORM\Column(type: "text", nullable: true)]
     private $information;
 
-    /**
-     * @ORM\Column(type="date", nullable=true)
-     */
+    #[ORM\Column(type: "date", nullable: true)]
     private $dateSortie;
 
-    /**
-     * @return \App\Entity\User $authered
-     */
+    public function __construct()
+    {
+        $this->realisateurs = new \Doctrine\Common\Collections\ArrayCollection();
+        $this->usersWantToView = new \Doctrine\Common\Collections\ArrayCollection();
+        $this->usersWhoSeen = new \Doctrine\Common\Collections\ArrayCollection();
+        $this->genres = new \Doctrine\Common\Collections\ArrayCollection();
+        $this->commentaires = new \Doctrine\Common\Collections\ArrayCollection();
+        $this->setDateSubmited(new \DateTime());
+    }
+
     public function getAuthered()
     {
         return $this->authered;
     }
 
-    /**
-     * @param \App\Entity\User $authered
-     */
     public function setAuthered(User $authered)
     {
         $this->authered = $authered;
     }
 
-    /**
-     * Get id
-     *
-     * @return int
-     */
     public function getId()
     {
         return $this->id;
     }
 
-    /**
-     * Set titre
-     *
-     * @param string $titre
-     *
-     * @return Film
-     */
     public function setTitre($titre)
     {
         $this->titre = $titre;
@@ -202,23 +98,11 @@ class Film
         return $this;
     }
 
-    /**
-     * Get titre
-     *
-     * @return string
-     */
     public function getTitre()
     {
         return $this->titre;
     }
 
-    /**
-     * Set annee
-     *
-     * @param \DateTime $annee
-     *
-     * @return Film
-     */
     public function setAnnee($annee)
     {
         $this->annee = $annee;
@@ -226,52 +110,37 @@ class Film
         return $this;
     }
 
-    /**
-     * Get annee
-     *
-     * @return \DateTime
-     */
     public function getAnnee()
     {
         return $this->annee;
     }
 
-    /**
-     * @return string
-     */
     public function getLien()
     {
         return $this->lien;
     }
 
-    /**
-     * @param string $lien
-     */
     public function setLien($lien = null)
     {
         $this->lien = $lien;
     }
 
-    /**
-     * Constructor
-     */
-    public function __construct()
+    public function getDateSubmited()
     {
-        $this->realisateurs = new \Doctrine\Common\Collections\ArrayCollection();
-        $this->usersWantToView = new \Doctrine\Common\Collections\ArrayCollection();
-        $this->usersWhoSeen = new \Doctrine\Common\Collections\ArrayCollection();
-        $this->genres = new \Doctrine\Common\Collections\ArrayCollection();
-        $this->commentaires = new \Doctrine\Common\Collections\ArrayCollection();
-        $this->setDateSubmited(new \DateTime());
+        return $this->dateSubmited;
+    }
+
+    public function setDateSubmited(\DateTime $dateSubmited)
+    {
+        $this->dateSubmited = $dateSubmited;
+    }
+
+    public function isNew()
+    {
+        $finNew = $this->getDateSubmited()->modify('+1 day');
+        return (new \DateTime('now') < $finNew);
     }
 
-    /**
-     * Add Commentaire
-     * 
-     * @param \App\Entity\Commentaire $commentaire
-     * 
-     * @return Film
-     */
     public function addCommentaire(\App\Entity\Commentaire $commentaire)
     {
         $this->commentaires[] = $commentaire;
@@ -279,13 +148,6 @@ class Film
         return $this;
     }
 
-    /**
-     * Remove commentaire
-     * 
-     * @param \App\Entity\Commentaire $commentaire
-     * 
-     * @return Film
-     */
     public function removeCommentaire(\App\Entity\Commentaire $commentaire)
     {
         $this->commentaires->removeElement($commentaire);
@@ -293,23 +155,11 @@ class Film
         return $this;
     }
 
-    /**
-     * Get Commentaires
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getCommentaires()
     {
         return $this->commentaires;
     }
 
-    /**
-     * Add realisateur
-     *
-     * @param \App\Entity\Realisateur $realisateur
-     *
-     * @return Film
-     */
     public function addRealisateur(Realisateur $realisateur)
     {
         $this->realisateurs[] = $realisateur;
@@ -317,34 +167,16 @@ class Film
         return $this;
     }
 
-    /**
-     * Remove realisateur
-     *
-     * @param \App\Entity\Realisateur $realisateur
-     */
     public function removeRealisateur(Realisateur $realisateur)
     {
         $this->realisateurs->removeElement($realisateur);
     }
 
-    /**
-     * Get realisateurs
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getRealisateurs()
     {
         return $this->realisateurs;
     }
 
-    ///////////////////////////////////////////////////////
-    /**
-     * Add user
-     *
-     * @param \App\Entity\User $user
-     *
-     * @return film
-     */
     public function addUserWantToView(User $user)
     {
         $this->usersWantToView[] = $user;
@@ -353,35 +185,17 @@ class Film
         return $this;
     }
 
-    /**
-     * Remove user
-     *
-     * @param \App\Entity\User $user
-     */
     public function removeUserWantToView(User $user)
     {
         $this->usersWantToView->removeElement($user);
         $user->removeFilm($this);
     }
 
-    /**
-     * Get usersWantToView
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getUsersWantToView()
     {
         return $this->usersWantToView;
     }
 
-    /////////////////////////////////////////////////////////////////////
-    /**
-     * Add user
-     *
-     * @param \App\Entity\User $user
-     *
-     * @return film
-     */
     public function addUserWhoSeen(User $user)
     {
         $this->usersWhoSeen[] = $user;
@@ -390,89 +204,49 @@ class Film
         return $this;
     }
 
-    /**
-     * Remove user
-     *
-     * @param \App\Entity\User $user
-     */
     public function removeUserWhoSeen(User $user)
     {
         $this->usersWhoSeen->removeElement($user);
         $user->removeFilmVu($this);
     }
 
-    /**
-     * Get usersWantToView
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getUsersWhoSeen()
     {
         return $this->usersWhoSeen;
     }
 
-    /**
-     * Get genre
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getGenres()
     {
         return $this->genres;
     }
 
-    /**
-     * Add genre
-     *
-     * @param \App\Entity\Genre $genre
-     *
-     * @return film
-     */
     public function addGenre(Genre $genre)
     {
         $this->genres[] = $genre;
         return $this;
     }
 
-    /**
-     * Remove genre
-     *
-     * @param \App\Entity\Genre $genre
-     * @return Film
-     */
     public function removeGenre(Genre $genre)
     {
         $this->genres->removeElement($genre);
         return $this;
     }
 
-    /**
-     * @return float
-     */
     public function getNote()
     {
         return $this->note;
     }
 
-    /**
-     * @param float $note
-     */
     public function setNote($note)
     {
         $this->note = $note;
     }
 
-    /**
-     * @return int
-     */
     public function getNbComs()
     {
         return $this->nbComs;
     }
 
-    /**
-     * @param int $nbComs
-     */
     public function setNbComs($nbComs)
     {
         $this->nbComs = $nbComs;
@@ -502,6 +276,15 @@ class Film
         return $this;
     }
 
+    public function getMediaVideo()
+    {
+        return $this->mediaVideo;
+    }
+
+    public function setMediaVideo(MediaVideo $mediaVideo = null)
+    {
+        $this->mediaVideo = $mediaVideo;
+    }
 
 
 }

+ 8 - 35
src/Entity/Genre.php

@@ -2,49 +2,27 @@
 
 namespace App\Entity;
 
+use App\Repository\GenreRepository;
 use Doctrine\ORM\Mapping as ORM;
 
-/**
- * Genre
- *
- * @ORM\Table(name="genre")
- * @ORM\Entity(repositoryClass="App\Repository\GenreRepository")
- */
+#[ORM\Table(name: "genre")]
+#[ORM\Entity(repositoryClass: GenreRepository::class)]
+
 class Genre
 {
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="id", type="integer")
-     * @ORM\Id
-     * @ORM\GeneratedValue(strategy="AUTO")
-     */
+    #[ORM\Column(name: "id", type: "integer")]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: "AUTO")]
     private $id;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="name", type="string", length=191, unique=true)
-     */
+    #[ORM\Column(name: "name", type: "string", length: 191, unique: true)]
     private $name;
 
-    /**
-     * Get id
-     *
-     * @return int
-     */
     public function getId()
     {
         return $this->id;
     }
 
-    /**
-     * Set name
-     *
-     * @param string $name
-     *
-     * @return Genre
-     */
     public function setName($name)
     {
         $this->name = $name;
@@ -52,11 +30,6 @@ class Genre
         return $this;
     }
 
-    /**
-     * Get name
-     *
-     * @return string
-     */
     public function getName()
     {
         return $this->name;

+ 32 - 76
src/Entity/MediaVideo.php

@@ -2,64 +2,49 @@
 
 namespace App\Entity;
 
+use App\Repository\MediaVideoRepository;
 use Doctrine\ORM\Mapping as ORM;
 use Symfony\Component\Validator\Constraints as Assert;
 
-/**
- * MediaVideo
- *
- * @ORM\Table(name="media_video")
- * @ORM\Entity(repositoryClass="App\Repository\MediaVideoRepository")
- * @ORM\HasLifecycleCallbacks // Permet d’utiliser des événements
- */
+#[ORM\Table(name: "media_video")]
+#[ORM\Entity(repositoryClass: MediaVideoRepository::class)]
+#[ORM\HasLifecycleCallbacks] // Permet d’utiliser des événements
+
 class MediaVideo
 {
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="id", type="integer")
-     * @ORM\Id
-     * @ORM\GeneratedValue(strategy="AUTO")
-     */
+    
+
+    #[ORM\Column(name: "id", type: "integer")]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: "AUTO")]
+    
     private $id;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="type", type="string", length=191)
-     */
+    
+
+    #[ORM\Column(name: "type", type: "string", length: 191)]
+    
     private $type;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="identif", type="string", length=191)
-     */
+    
+
+    #[ORM\Column(name: "identif", type: "string", length: 191)]
+    
     private $identif;
 
-    /**
-     * @Assert\Regex(
-     *     pattern="#^(http|https)://(youtu.be|www.youtube.com|www.dailymotion.com|vimeo.com|video.fdlibre.eu)/#",
-     *     match=true,
-     *     message="L'url doit correspondre à l'url d'une vidéo Youtube, DailyMotion, Vimeo ou Peertube(fdlibre)"
-     * )
-     */
+    #[Assert\Regex(
+        pattern: "#^(http|https)://(youtu.be|www.youtube.com|www.dailymotion.com|vimeo.com|video.fdlibre.eu)/#",
+        match: true,
+        message: "L'url doit correspondre à l'url d'une vidéo Youtube, DailyMotion, Vimeo ou Peertube(fdlibre)"
+    )]
+    
     private $url;
 
-    /**
-     * Get id
-     *
-     * @return int
-     */
     public function getId()
     {
         return $this->id;
     }
 
-    /**
-     * @return string
-     *
-     */
     public function getUrl()
     {
         return $this->url;
@@ -69,14 +54,7 @@ class MediaVideo
     {
         return $this->url = $url;
     }
-
-    /**
-     * Set type
-     *
-     * @param string $type
-     *
-     * @return MediaVideo
-     */
+    
     public function setType($type)
     {
         $this->type = $type;
@@ -84,35 +62,18 @@ class MediaVideo
         return $this;
     }
 
-    /**
-     * Get type
-     *
-     * @return string
-     */
     public function getType()
     {
         return $this->type;
     }
-
-    /**
-     * Set identif
-     *
-     * @param string $identif
-     *
-     * @return MediaVideo
-     */
+    
     public function setIdentif($identif)
     {
         $this->identif = $identif;
 
         return $this;
     }
-
-    /**
-     * Get identif
-     *
-     * @return string
-     */
+    
     public function getIdentif()
     {
         return $this->identif;
@@ -163,11 +124,10 @@ class MediaVideo
         $this->setType('vimeo');  // signale qu’il s’agit d’une video vimeo et l’inscrit dans l’attribut $type
     }
 
-    /**
-     * @ORM\PrePersist() // Les trois événement suivant s’exécute avant que l’entité soit enregistée
-     * @ORM\PreUpdate()
-     * @ORM\PreFlush()
-     */
+    #[ORM\PrePersist()] // Les trois événement suivant s’exécute avant que l’entité soit enregistée
+    #[ORM\PreUpdate()]
+    #[ORM\PreFlush()]
+    
     public function extractIdentif()
     {
         $url = $this->getUrl();  // on récupère l’url
@@ -261,8 +221,4 @@ class MediaVideo
         $video = "<iframe src='".$this->embedUrl()."'  allowfullscreen></iframe>";
         return $video;
     }
-
-
-
-
 }

+ 13 - 15
src/Entity/Profile.php

@@ -5,29 +5,27 @@ namespace App\Entity;
 use App\Repository\ProfileRepository;
 use Doctrine\ORM\Mapping as ORM;
 
-/**
- * @ORM\Entity(repositoryClass=ProfileRepository::class)
- */
+#[ORM\Entity(repositoryClass: ProfileRepository::class)]
 class Profile
 {
     public static $VIEW = ['liste' => 0, 'vignette' => 1];
 
-    /**
-     * @ORM\Id
-     * @ORM\GeneratedValue
-     * @ORM\Column(type="integer")
-     */
+
+    #[ORM\Id]
+    #[ORM\GeneratedValue]
+    #[ORM\Column(type: "integer")]
+
     private $id;
 
-    /**
-     * @ORM\OneToOne(targetEntity=User::class, inversedBy="profile", cascade={"persist", "remove"})
-     * @ORM\JoinColumn(nullable=false)
-     */
+
+    #[ORM\OneToOne(targetEntity: User::class, inversedBy: "profile", cascade: ["persist", "remove"])]
+    #[ORM\JoinColumn(nullable: false)]
+
     private $user;
 
-    /**
-     * @ORM\Column(type="integer")
-     */
+
+    #[ORM\Column(type: "integer")]
+
     private $view;
 
     public function __construct()

+ 10 - 58
src/Entity/Realisateur.php

@@ -2,62 +2,36 @@
 
 namespace App\Entity;
 
+use App\Repository\RealisateurRepository;
 use Doctrine\ORM\Mapping as ORM;
 
-/**
- * Realisateur
- *
- * @ORM\Table(name="realisateur")
- * @ORM\Entity(repositoryClass="App\Repository\RealisateurRepository")
- */
+#[ORM\Table(name: "realisateur")]
+#[ORM\Entity(repositoryClass: RealisateurRepository::class)]
+
 class Realisateur
 {
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="id", type="integer")
-     * @ORM\Id
-     * @ORM\GeneratedValue(strategy="AUTO")
-     */
+
+    #[ORM\Column(name: "id", type: "integer")]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: "AUTO")]
     private $id;
 
-    /**
-     * @var string
-     * @ORM\Column(name="nom_complet", type="string", length=191, unique=true)
-     */
+    #[ORM\Column(name: "nom_complet", type: "string", length: 191, unique: true)]
     private $nomComplet;
 
-    /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="realisateurs", cascade={"persist"})
-     * @var \Doctrine\Common\Collections\Collection
-     */
+    #[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "realisateurs", cascade: ["persist"])]
     private $films;
 
-    /**
-     * Get id
-     *
-     * @return int
-     */
     public function getId()
     {
         return $this->id;
     }
 
-    /**
-     * Constructor
-     */
     public function __construct()
     {
         $this->films = new \Doctrine\Common\Collections\ArrayCollection();
     }
 
-    /**
-     * Add film
-     *
-     * @param \App\Entity\Film $film
-     *
-     * @return Realisateur
-     */
     public function addFilm(\App\Entity\Film $film)
     {
         $this->films[] = $film;
@@ -65,43 +39,21 @@ class Realisateur
         return $this;
     }
 
-    /**
-     * Remove film
-     *
-     * @param \App\Entity\Film $film
-     */
     public function removeFilm(\App\Entity\Film $film)
     {
         $this->films->removeElement($film);
     }
 
-    /**
-     * Get films
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getFilms()
     {
         return $this->films;
     }
 
-    /**
-     * Get nomComplet
-     *
-     * @return string
-     */
     public function getNomComplet ()
     {
         return $this->nomComplet;
     }
 
-    /**
-     * Set nomComplet
-     *
-     * @param string $nomComplet
-     *
-     * @return Realisateur
-     */
     public function setNomComplet($nom)
     {
         $this->nomComplet = $nom;

+ 38 - 263
src/Entity/User.php

@@ -2,132 +2,83 @@
 
 namespace App\Entity;
 
+use App\Repository\UserRepository;
 use Doctrine\ORM\Mapping as ORM;
 use Symfony\Component\Security\Core\User\UserInterface;
 use Symfony\Component\Validator\Constraints as Assert;
 use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
 use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
 
-/**
- * User
- *
- * @ORM\Table(name="user")
- * @ORM\Entity(repositoryClass="App\Repository\UserRepository")
- * @UniqueEntity(fields="username", message="Le username est déjà utilisé")
- * @UniqueEntity(fields="mail", message="L'email est déjà utilisé")
- * @UniqueEntity(fields="token", message="Erreur, token non unique")
- *
- */
+#[ORM\Table(name: "user")]
+#[ORM\Entity(repositoryClass: UserRepository::class)]
+#[UniqueEntity(fields: "username", message: "Le username est déjà utilisé")]
+#[UniqueEntity(fields: "mail", message: "L'email est déjà utilisé")]
+#[UniqueEntity(fields: "token", message: "Erreur, token non unique")]
+
 class User implements UserInterface,PasswordAuthenticatedUserInterface
 {
-    /**
-     * @var int
-     *
-     * @ORM\Column(name="id", type="integer")
-     * @ORM\Id
-     * @ORM\GeneratedValue(strategy="AUTO")
-     */
+
+    #[ORM\Column(name: "id", type: "integer")]
+    #[ORM\Id]
+    #[ORM\GeneratedValue(strategy: "AUTO")]
     private $id;
 
-    /**
- * @var string
- *
- * @ORM\Column(name="username", type="string", length=191, unique=true)
- */
+    #[ORM\Column(name: "username", type: "string", length: 191, unique: true)]
     private $username;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="prenom", type="string", length=191, nullable=true)
-     */
+    #[ORM\Column(name: "prenom", type: "string", length: 191, nullable: true)]
     private $prenom;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="nom", type="string", length=191, nullable=true)
-     */
+    #[ORM\Column(name: "nom", type: "string", length: 191, nullable: true)]
     private $nom;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="mail", type="string", length=191, unique=true)
-     * @Assert\Email()
-     */
+    #[ORM\Column(name: "mail", type: "string", length: 191, unique: true)]
+    #[Assert\Email()]
     private $mail;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="password", type="string", length=191)
-     */
+    #[ORM\Column(name: "password", type: "string", length: 191)]
     private $password;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="token", type="string", length=191, unique=true)
-     */
+    #[ORM\Column(name: "token", type: "string", length: 191, unique: true)]
+
     private $token;
 
-    /**
-     * @var \DateTime
-     *
-     * @ORM\Column(name="token_validity", type="datetime")
-     * @Assert\Type("DateTime")
-     */
+    #[ORM\Column(name: "token_validity", type: "datetime")]
+    #[Assert\Type("DateTime")]
     private $tokenValidity;
 
-    /**
-     * @var string
-     *
-     * @ORM\Column(name="salt", type="string", length=191, nullable=true)
-     */
+    #[ORM\Column(name: "salt", type: "string", length: 191, nullable: true)]
     private $salt;
 
-    /**
-     * @var boolean
-     *
-     * @ORM\Column(name="is_active", type="boolean")
-     */
+    #[ORM\Column(name: "is_active", type: "boolean")]
     private $isActive;
 
-    /**
-     * @var array
-     *
-     * @ORM\Column(name="roles", type="array")
-     */
+    #[ORM\Column(name: "roles", type: "array")]
     private $roles = array();
 
-    /**
-     * @var \DateTime
-     *
-     * @ORM\Column(name="last_activity", type="datetime")
-     * @Assert\Type("DateTime")
-     */
+    #[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "usersWantToView")]
+    private $films;
+
+    #[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "usersWhoSeen")]
+    private $filmsVus;
+
+    #[ORM\OneToOne(targetEntity: Profile::class, mappedBy: "user", cascade: ["persist", "remove"])]
+    private $profile;
+
+    #[ORM\Column(name: "last_activity", type: "datetime")]
+    #[Assert\Type("DateTime")]
     private $lastActivity;
 
-    /**
-     * @return \DateTime
-     */
     public function getLastActivity()
     {
         return $this->lastActivity;
     }
 
-    /**
-     * @param \DateTime $lastActivity
-     */
     public function setLastActivity($lastActivity)
     {
         $this->lastActivity = $lastActivity;
     }
 
-    /**
-     * @return boolean
-     */
     public function isActiveNow()
     {
         $delay = new \DateTime('5 minutes ago');
@@ -135,41 +86,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return ( $this->getLastActivity() > $delay );
     }
 
-    /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="usersWantToView")
-     * @var \Doctrine\Common\Collections\Collection
-     */
-    private $films;
-
-    /**
-     * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="usersWhoSeen")
-     * @var \Doctrine\Common\Collections\Collection
-     */
-    private $filmsVus;
-
-    /**
-     * @ORM\OneToOne(targetEntity=Profile::class, mappedBy="user", cascade={"persist", "remove"})
-     */
-    private $profile;
-
-
-    /**
-     * Get id
-     *
-     * @return int
-     */
     public function getId()
     {
         return $this->id;
     }
 
-    /**
-     * Set username
-     *
-     * @param string $username
-     *
-     * @return User
-     */
     public function setUsername($username)
     {
         $this->username = $username;
@@ -177,96 +98,56 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * @deprecated since Symfony 5.3, use getUserIdentifier instead
-     */
     public function getUsername()
     {
         return (string) $this->username;
     }
 
-    /**
-     * Get UserIdentifier
-     * 
-     * @return string
-     */
     public function getUserIdentifier()
     {
         return $this->username;
     }
 
-    /**
-     * @param bool $activated
-     */
     public function setActivated($activated)
     {
         $this->isActive = $activated;
     }
 
-    /**
-     * @return bool
-     */
     public function getActivated()
     {
         return $this->isActive;
     }
 
-    /**
-     * @return string
-     */
     public function getPrenom()
     {
         return $this->prenom;
     }
 
-    /**
-     * @param string $prenom
-     */
     public function setPrenom($prenom)
     {
         $this->prenom = $prenom;
     }
 
-    /**
-     * @return string
-     */
     public function getNom()
     {
         return $this->nom;
     }
 
-    /**
-     * @param string $nom
-     */
     public function setNom($nom)
     {
         $this->nom = $nom;
     }
 
-    /**
-     * @return string
-     */
     public function getMail()
     {
         return $this->mail;
     }
 
-    /**
-     * @param string $mail
-     */
     public function setMail($mail)
     {
         $this->mail = $mail;
     }
 
-
-    /**
-     * Set password
-     *
-     * @param string $password
-     *
-     * @return User
-     */
     public function setPassword($password)
     {
         $this->password = $password;
@@ -274,23 +155,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * Get password
-     *
-     * @return string
-     */
     public function getPassword() : ?string
     {
         return $this->password;
     }
 
-    /**
-     * Set salt
-     *
-     * @param string $salt
-     *
-     * @return User
-     */
     public function setSalt($salt)
     {
         $this->salt = $salt;
@@ -298,31 +167,16 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * Get salt
-     *
-     * @return string
-     */
     public function getSalt()
     {
         return $this->salt;
     }
 
-    /**
-     * Get token
-     *
-     * @return string
-     */
     public function getToken()
     {
         return $this->token;
     }
 
-    /**
-     * Set token
-     *
-     * @return User
-     */
     public function setToken($token)
     {
         //$this->token = hash("sha512", uniqid());
@@ -332,23 +186,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * Get token_validity
-     *
-     * @return \DateTime
-     */
     public function getTokenValidity()
     {
         return $this->tokenValidity;
     }
 
-    /**
-     * Set token
-     *
-     * @param \DateTime $tokenValidity
-     *
-     * @return User
-     */
     private function setTokenValidity(\DateTime $tokenValidity)
     {
         $this->tokenValidity = $tokenValidity;
@@ -356,26 +198,12 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * Is ValidToken
-     *
-     * @return boolean
-     *
-     */
-
     public function isValidToken()
     {
         $expire = $this->getTokenValidity()->modify('+1 hour');
         return ( $expire > new \DateTime('now') );
     }
 
-    /**
-     * Set roles
-     *
-     * @param array $roles
-     *
-     * @return User
-     */
     public function setRoles($roles)
     {
         $this->roles = $roles;
@@ -383,11 +211,6 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * Get roles
-     *
-     * @return array
-     */
     public function getRoles()
     {
         return $this->roles;
@@ -397,9 +220,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
     {
 
     }
-    /**
-     * Constructor
-     */
+
     public function __construct()
     {
         $this->films = new \Doctrine\Common\Collections\ArrayCollection();
@@ -409,13 +230,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
     }
 
     ///////////////////////////////////////////////////////////////
-    /**
-     * Add film
-     *
-     * @param \App\Entity\Film $film
-     *
-     * @return User
-     */
+   
     public function addFilm(\App\Entity\Film $film)
     {
         $this->films[] = $film;
@@ -423,34 +238,18 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * Remove film
-     *
-     * @param \App\Entity\Film $film
-     */
     public function removeFilm(\App\Entity\Film $film)
     {
         $this->films->removeElement($film);
     }
 
-    /**
-     * Get films
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getFilms()
     {
         return $this->films;
     }
 
     ///////////////////////////////////////////////////////////////////////////
-    /**
-     * Add film
-     *
-     * @param \App\Entity\Film $film
-     *
-     * @return User
-     */
+
     public function addFilmVu(\App\Entity\Film $film)
     {
         $this->filmsVus[] = $film;
@@ -458,30 +257,16 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this;
     }
 
-    /**
-     * Remove film
-     *
-     * @param \App\Entity\Film $film
-     */
     public function removeFilmVu(\App\Entity\Film $film)
     {
         $this->filmsVus->removeElement($film);
     }
 
-    /**
-     * Get films
-     *
-     * @return \Doctrine\Common\Collections\Collection
-     */
     public function getFilmsVus()
     {
         return $this->filmsVus;
     }
 
-    /**
-     * Get nomComplet
-     * @return string
-     */
     public function getNomComplet()
     {
         if ($this->prenom == null && $this->nom == null)
@@ -511,7 +296,6 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         return $this->isActive;
     }
 
-    /** @see \Serializable::serialize() */
     public function serialize()
     {
         return serialize(array(
@@ -524,7 +308,6 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
         ));
     }
 
-    /** @see \Serializable::unserialize() */
     public function unserialize($serialized)
     {
         list (
@@ -538,19 +321,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
             ) = unserialize($serialized, array('allowed_classes' => false));
     }
 
-    /**
-     * @param \App\Entity\Film $film
-     * @return boolean
-     */
     public function wantToSee(Film $film)
     {
         return $this->getFilms()->contains($film);
     }
 
-    /**
-     * @param \App\Entity\Film $film
-     * @return boolean
-     */
     public function haveSeen(Film $film)
     {
         return $this->getFilmsVus()->contains($film);