vendor/webbamboo/spinners-common/src/Entity/Metatitlecounty.php line 15
<?phpnamespace Webbamboo\SpinnersCommon\Entity;use Doctrine\ORM\Mapping as ORM;use Webbamboo\SpinnersCommon\Repository\MetatitlecountyRepository;/*** Metatitlecounty** @ORM\Table("Metatitlecounty")* @ORM\Entity*/#[ORM\Entity(repositoryClass: MetatitlecountyRepository::class)]class Metatitlecounty{/*** @var integer** @ORM\Column(name="id", type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @var string** @ORM\Column(name="title", type="string", length=255)*/private $title;/*** @ORM\OneToMany(targetEntity="Counties", mappedBy="metatitle")*/private $counties;/*** Get id** @return integer*/public function getId(){return $this->id;}/*** Set title** @param string $title* @return Metatitlecounty*/public function setTitle($title){$this->title = $title;return $this;}/*** Get title** @return string*/public function getTitle(){return $this->title;}/*** Constructor*/public function __construct(){$this->counties = new \Doctrine\Common\Collections\ArrayCollection();}/*** Add counties** @param \Webbamboo\SpinnersCommon\Entity\Counties $counties* @return Metatitlecounty*/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;}}