mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-14 16:46:30 +03:00
16 lines
226 B
PHP
16 lines
226 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\User;
|
|
|
|
use Nucleos\UserBundle\Model\Group as BaseGroup;
|
|
|
|
class Group extends BaseGroup
|
|
{
|
|
public function setId(string $id): void
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
}
|