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