namespace Rapsys\UserBundle\Entity;
+use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Event\PreUpdateEventArgs;
/**
* @var integer
*/
- protected $id;
-
- /**
- * @var string
- */
- protected $title;
+ protected int $id;
/**
* @var \DateTime
*/
- protected $created;
+ protected \DateTime $created;
/**
* @var \DateTime
*/
- protected $updated;
+ protected \DateTime $updated;
/**
* @var ArrayCollection
*/
- protected $users;
+ protected Collection $users;
/**
* Constructor
*
* @param string $title The group name
*/
- public function __construct(string $title) {
+ public function __construct(protected string $title) {
//Set defaults
- $this->title = $title;
$this->created = new \DateTime('now');
$this->updated = new \DateTime('now');
$this->users = new ArrayCollection();
*
* @return string
*/
- public function getTitle(): ?string {
+ public function getTitle(): string {
return $this->title;
}