<?php
namespace App\Entity;
use App\Repository\SiteConfigMetaRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=SiteConfigMetaRepository::class)
*/
class SiteConfigMeta
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
public function getId(): ?int
{
return $this->id;
}
/**
* @ORM\Column(type="string", length=100, nullable=true, options={"default": "author"})
*/
private $author;
/**
* @ORM\Column(type="string", length=100, nullable=true, options={"default": "description"})
*/
private $description;
public function getAuthor(): ?string
{
return $this->author;
}
public function setAuthor(?string $author): self
{
$this->author = $author;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setdescription(?string $description): self
{
$this->description = $description;
return $this;
}
}