<?php
namespace App\Entity;
use App\Repository\ProviderTypeRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ProviderTypeRepository::class)
*/
class ProviderType
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $content;
/**
* @ORM\Column(type="string", length=255)
*/
private $plural;
public function getId(): ?int
{
return $this->id;
}
public function getContent(): ?string
{
return $this->content;
}
public function setContent(string $content): self
{
$this->content = $content;
return $this;
}
public function getPlural(): ?string
{
return $this->plural;
}
public function setPlural(string $plural): self
{
$this->plural = $plural;
return $this;
}
public function __toString()
{
return $this->content;
}
}