diff --git a/src/Entity/ActorEntity.php b/src/Entity/ActorEntity.php index 5ebe8e8..9a915bf 100644 --- a/src/Entity/ActorEntity.php +++ b/src/Entity/ActorEntity.php @@ -2,10 +2,9 @@ namespace App\Entity; use App\Helper\StringGenerationHelper; -use Doctrine\Common\Collections\ArrayCollection; /** - * Entity for workspaces + * Entity for actors */ class ActorEntity { @@ -13,7 +12,7 @@ /** @var string The unique identifier of the entity */ protected $id = ''; - /** @var string The first name of the actof */ + /** @var string The first name of the actor */ protected $firstName = ''; /** @var string The last name of the actor */ @@ -33,7 +32,6 @@ */ public function __construct() { - $this->activities = new ArrayCollection(); } /**