| Current Path : /var/www/v3.cesa.co.za/src/ContentBundle/Entity/ |
| Current File : /var/www/v3.cesa.co.za/src/ContentBundle/Entity/FormType.php |
<?php
namespace App\ContentBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* FormType
*
* @ORM\Table(name="content_form_type")
* @ORM\Entity(repositoryClass="App\ContentBundle\Repository\FormTypeRepository")
*/
class FormType
{
/**
* @ORM\Id
* @ORM\Column(type="string", unique=true)
* @ORM\GeneratedValue(strategy="CUSTOM")
* @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $type_name;
public function getId(): ?string
{
return $this->id;
}
public function getTypeName(): ?string
{
return $this->type_name;
}
public function setTypeName(string $type_name): static
{
$this->type_name = $type_name;
return $this;
}
}