<?php
namespace App\Entity;
use App\Repository\EducationRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: EducationRepository::class)]
class Education
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $Degree = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $time = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $institute = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $description = null;
public function getId(): ?int
{
return $this->id;
}
public function getDegree(): ?string
{
return $this->Degree;
}
public function setDegree(?string $Degree): self
{
$this->Degree = $Degree;
return $this;
}
public function getTime(): ?string
{
return $this->time;
}
public function setTime(?string $time): self
{
$this->time = $time;
return $this;
}
public function getInstitute(): ?string
{
return $this->institute;
}
public function setInstitute(?string $institute): self
{
$this->institute = $institute;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
}