<?php
namespace App\Entity;
use App\Repository\IctusExtensionRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=IctusExtensionRepository::class)
*/
class IctusExtension
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $reel;
/**
* @ORM\Column(type="json", nullable=true)
*/
private $fictif = [];
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $signification;
public function getId(): ?int
{
return $this->id;
}
public function getReel(): ?string
{
return $this->reel;
}
public function setReel(?string $reel): self
{
$this->reel = $reel;
return $this;
}
public function getFictif(): ?array
{
return $this->fictif;
}
public function setFictif(?array $fictif): self
{
$this->fictif = $fictif;
return $this;
}
public function getSignification(): ?string
{
return $this->signification;
}
public function setSignification(?string $signification): self
{
$this->signification = $signification;
return $this;
}
}