133 lines
2.5 KiB
PHP
133 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Model\Fillable;
|
|
use App\Model\FillTrait;
|
|
use App\Model\Referable;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* @ORM\Entity(readOnly=true)
|
|
* @ORM\Table("stop")
|
|
*/
|
|
class StopEntity implements Entity, Fillable
|
|
{
|
|
use FillTrait, ReferableEntityTrait, ProviderReferenceTrait;
|
|
|
|
/**
|
|
* Identifier for stop coming from provider
|
|
*
|
|
* @ORM\Column(type="string")
|
|
* @ORM\Id
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* Stop name
|
|
* @var string
|
|
*
|
|
* @ORM\Column(type="string")
|
|
*/
|
|
private $name;
|
|
|
|
/**
|
|
* Optional stop description, should not be longer than 255 chars
|
|
* @var string|null
|
|
*
|
|
* @ORM\Column(type="string", length=255, nullable=true)
|
|
*/
|
|
private $description;
|
|
|
|
/**
|
|
* Optional stop variant - for example number of shed
|
|
* @var string|null
|
|
*
|
|
* @ORM\Column(type="string", nullable=true)
|
|
*/
|
|
private $variant;
|
|
|
|
/**
|
|
* Latitude of stop
|
|
*
|
|
* @var float|null
|
|
* @ORM\Column(type="float", nullable=true)
|
|
*/
|
|
private $latitude;
|
|
|
|
/**
|
|
* Longitude of stop
|
|
*
|
|
* @var float|null
|
|
* @ORM\Column(type="float", nullable=true)
|
|
*/
|
|
private $longitude;
|
|
|
|
/**
|
|
* True if stop is available only on demand
|
|
* @var bool
|
|
*
|
|
* @ORM\Column(type="boolean")
|
|
*/
|
|
private $onDemand = false;
|
|
|
|
public function getName(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName(string $name): void
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
public function getDescription(): ?string
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
public function setDescription(?string $description): void
|
|
{
|
|
$this->description = $description;
|
|
}
|
|
|
|
public function getVariant(): ?string
|
|
{
|
|
return $this->variant;
|
|
}
|
|
|
|
public function setVariant(?string $variant): void
|
|
{
|
|
$this->variant = $variant;
|
|
}
|
|
|
|
public function getLatitude(): ?float
|
|
{
|
|
return $this->latitude;
|
|
}
|
|
|
|
public function setLatitude(?float $latitude): void
|
|
{
|
|
$this->latitude = $latitude;
|
|
}
|
|
|
|
public function getLongitude(): ?float
|
|
{
|
|
return $this->longitude;
|
|
}
|
|
|
|
public function setLongitude(?float $longitude): void
|
|
{
|
|
$this->longitude = $longitude;
|
|
}
|
|
|
|
public function isOnDemand(): bool
|
|
{
|
|
return $this->onDemand;
|
|
}
|
|
|
|
public function setOnDemand(bool $onDemand): void
|
|
{
|
|
$this->onDemand = $onDemand;
|
|
}
|
|
} |