<?php
namespace App\Entity;
use App\Repository\CurrencyRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: CurrencyRepository::class)]
class Currency
{
public const CURRENT_CURRENCY = 'Euro';
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 150)]
private $name;
#[ORM\Column(type: 'string', length: 10)]
private $symbol;
#[ORM\Column(type: 'string', length: 10, nullable: true)]
private $abbreviation;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getSymbol(): ?string
{
return $this->symbol;
}
public function setSymbol(string $symbol): self
{
$this->symbol = $symbol;
return $this;
}
public function getAbbreviation(): ?string
{
return $this->abbreviation;
}
public function setAbbreviation(?string $abbreviation): self
{
$this->abbreviation = $abbreviation;
return $this;
}
}