vendor/webbamboo/spinners-common/src/Entity/Contentpartonecounty.php line 15
<?phpnamespace Webbamboo\SpinnersCommon\Entity;use Doctrine\ORM\Mapping as ORM;use Webbamboo\SpinnersCommon\Repository\ContentpartonecountyRepository;/*** Contentpartonecounty** @ORM\Table("Contentpartonecounty")* @ORM\Entity*/#[ORM\Entity(repositoryClass: ContentpartonecountyRepository::class)]class Contentpartonecounty{/*** @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="contentone")*/private $counties;/*** Get id** @return integer*/public function getId(){return $this->id;}/*** Set content** @param string $content* @return Contentpartonecounty*/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 Contentpartonecounty*/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;}}