vendor/webbamboo/spinners-common/src/Entity/Metadescriptioncounty.php line 15
<?phpnamespace Webbamboo\SpinnersCommon\Entity;use Doctrine\ORM\Mapping as ORM;use Webbamboo\SpinnersCommon\Repository\MetadescriptioncountyRepository;/*** Metadescriptioncounty** @ORM\Table("Metadescriptioncounty")* @ORM\Entity*/#[ORM\Entity(repositoryClass: MetadescriptioncountyRepository::class)]class Metadescriptioncounty{/*** @var integer** @ORM\Column(name="id", type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @var string** @ORM\Column(name="description", type="text")*/private $description;/*** @ORM\OneToMany(targetEntity="Counties", mappedBy="metadescription")*/private $counties;/*** Get id** @return integer*/public function getId(){return $this->id;}/*** Set description** @param string $description* @return Metadescriptioncounty*/public function setDescription($description){$this->description = $description;return $this;}/*** Get description** @return string*/public function getDescription(){return $this->description;}/*** Constructor*/public function __construct(){$this->counties = new \Doctrine\Common\Collections\ArrayCollection();}/*** Add counties** @param \Webbamboo\SpinnersCommon\Entity\Counties $counties* @return Metadescriptioncounty*/public function addCounty(\Webbamboo\SpinnersCommon\Entity\Counties $counties){$this->counties[] = $counties;return $this;}/*** Remove counties** @param \Webbamboo\SpinnersCommon\Entity\Counties $counties*/public function removeCounty(\Webbamboo\SpinnersCommon\Entity\Counties $counties){$this->counties->removeElement($counties);}/*** Get counties** @return \Doctrine\Common\Collections\Collection*/public function getCounties(){return $this->counties;}}