vendor/webbamboo/spinners-common/src/Entity/Countythumbnail.php line 15
<?phpnamespace Webbamboo\SpinnersCommon\Entity;use Doctrine\ORM\Mapping as ORM;use Webbamboo\SpinnersCommon\Repository\CountythumbnailRepository;/*** Countythumbnail** @ORM\Table("Countythumbnail")* @ORM\Entity*/#[ORM\Entity(repositoryClass: CountythumbnailRepository::class)]class Countythumbnail{/*** @var integer** @ORM\Column(name="id", type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @var string** @ORM\Column(name="path", type="string", length=255, unique=true)*/private $path;/*** @ORM\ManyToOne(targetEntity="Countythumbnailalt", inversedBy="thumbnails")* @ORM\JoinColumn(referencedColumnName="id")*/private $alt;/*** @ORM\ManyToOne(targetEntity="Countythumbnailname", inversedBy="thumbnails")* @ORM\JoinColumn(referencedColumnName="id")*/private $name;/*** @ORM\OneToMany(targetEntity="Counties", mappedBy="thumbnail")*/private $counties;/*** Get id** @return integer*/public function getId(){return $this->id;}/*** Set path** @param string $path* @return Countythumbnail*/public function setPath($path){$this->path = $path;return $this;}/*** Get path** @return string*/public function getPath(){return $this->path;}/*** Constructor*/public function __construct(){$this->counties = new \Doctrine\Common\Collections\ArrayCollection();}/*** Set alt** @param \Webbamboo\SpinnersCommon\Entity\Countythumbnailalt $alt* @return Countythumbnail*/public function setAlt(\Webbamboo\SpinnersCommon\Entity\Countythumbnailalt $alt = null){$this->alt = $alt;return $this;}/*** Get alt** @return \Webbamboo\SpinnersCommon\Entity\Countythumbnailalt*/public function getAlt(){return $this->alt;}/*** Set name** @param \Webbamboo\SpinnersCommon\Entity\Countythumbnailname $name* @return Countythumbnail*/public function setName(\Webbamboo\SpinnersCommon\Entity\Countythumbnailname $name = null){$this->name = $name;return $this;}/*** Get name** @return \Webbamboo\SpinnersCommon\Entity\Countythumbnailname*/public function getName(){return $this->name;}/*** Add counties** @param \Webbamboo\SpinnersCommon\Entity\Counties $counties* @return Countythumbnail*/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;}}