<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use Sonata\IntlBundle\Timezone\TimezoneAwareInterface;use Sonata\IntlBundle\Timezone\TimezoneAwareTrait;use Sonata\UserBundle\Entity\BaseUser;/** * @ORM\Entity * @ORM\Table(name="user") */class User extends BaseUser implements TimezoneAwareInterface{ use TimezoneAwareTrait; /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ protected $id;}