<?php
namespace App\Entity;
use App\Repository\PieceFormateurRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=PieceFormateurRepository::class)
*/
class PieceFormateur
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=40)
*/
private $wording;
/**
* @ORM\Column(type="boolean")
*/
private $state;
public function getId(): ?int
{
return $this->id;
}
public function getWording(): ?String
{
return $this->wording;
}
public function setWording(String $wording): self
{
$this->wording = $wording;
return $this;
}
public function isState(): ?bool
{
return $this->state;
}
public function setState(bool $state): self
{
$this->state = $state;
return $this;
}
}