<?php
use Doctrine\ORM\Attributes as ORM;

*@[ORM\Entity]*
class Distillery
{
    *@[ORM\Id]*
    *@[ORM\Column("string")]*
    private $name;
}