vendor/webbamboo/spinners-common/src/Entity/General.php line 13
<?phpnamespace Webbamboo\SpinnersCommon\Entity;use Doctrine\ORM\Mapping as ORM;/*** General** @ORM\Table(name="general")* @ORM\Entity(repositoryClass="Webbamboo\SpinnersCommon\Repository\GeneralRepository")*/class General{/*** @var int** @ORM\Column(name="id", type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @var string** @ORM\Column(name="fromurl", type="string", length=255, unique=true)*/private $fromurl;/*** @var string** @ORM\Column(name="tourl", type="string", length=255)*/private $tourl;/*** @var \DateTime** @ORM\Column(name="timestamp", type="datetimetz")*/private $timestamp;/*** Get id** @return int*/public function getId(){return $this->id;}/*** Set fromurl** @param string $fromurl** @return General*/public function setFromurl($fromurl){$this->fromurl = $fromurl;return $this;}/*** Get fromurl** @return string*/public function getFromurl(){return $this->fromurl;}/*** Set tourl** @param string $tourl** @return General*/public function setTourl($tourl){$this->tourl = $tourl;return $this;}/*** Get tourl** @return string*/public function getTourl(){return $this->tourl;}/*** Set timestamp** @param \DateTime $timestamp** @return General*/public function setTimestamp($timestamp){$this->timestamp = $timestamp;return $this;}/*** Get timestamp** @return \DateTime*/public function getTimestamp(){return $this->timestamp;}}