<?php
namespace App\Entity;
use App\Repository\SeoRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=SeoRepository::class)
*/
class Seo
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $metadatas;
public function getId(): ?int
{
return $this->id;
}
public function getMetadatas(): ?string
{
return $this->metadatas;
}
public function setMetadatas(?string $metadatas): self
{
$this->metadatas = $metadatas;
return $this;
}
}