<?php
namespace App\Entity\Adherent;
use App\Repository\Adherent\OperateursRemboursementRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: OperateursRemboursementRepository::class)]
class OperateursRemboursement implements \Stringable
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 255)]
private $name;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $progressIdentifier;
public function __toString(): string{
return (string) $this->name;
}
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;
}
/**
* @return mixed
*/
public function getProgressIdentifier(): ?string
{
return $this->progressIdentifier;
}
/**
* @param mixed $progressIdentifier
*/
public function setProgressIdentifier(?string $progressIdentifier): void
{
$this->progressIdentifier = $progressIdentifier;
}
}