*/ class CommentFactory implements FactoryInterface { public function create(Post $post): Comment { $entity = new Comment(); $entity ->setPost($post) ->setIsActive(true) ; return $entity; } }