Covivo/mobicoop

View on GitHub
client/src/MobicoopBundle/PublicTransport/Entity/PTStep.php

Summary

Maintainability
A
2 hrs
Test Coverage
<?php

/**
 * Copyright (c) 2018, MOBICOOP. All rights reserved.
 * This project is dual licensed under AGPL and proprietary licence.
 ***************************
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU Affero General Public License as
 *    published by the Free Software Foundation, either version 3 of the
 *    License, or (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <gnu.org/licenses>.
 ***************************
 *    Licence MOBICOOP described in the file
 *    LICENSE
 **************************/

namespace Mobicoop\Bundle\MobicoopBundle\PublicTransport\Entity;

/**
 * A public transport step (by walk or public transport).
 *
 * @author Sylvain Briat <sylvain.briat@covivo.eu>
 */
class PTStep
{
    /**
     * @var int The id of this step.
     */
    private $id;
    
    /**
     * @var int The distance of this step.
     */
    private $distance;
    
    /**
     * @var int The duration of this step.
     */
    private $duration;
    
    /**
     * @var int The position of this step.
     */
    private $position;
    
    /**
     * @var bool The step is the last step of the section.
     */
    private $isLast;
    
    /**
     * @var string The magnetic direction of this section.
     */
    private $magneticDirection;
    
    /**
     * @var string The relative direction of this section.
     */
    private $relativeDirection;
   
    /**
     * @var PTLeg The parent section of this step.
     */
    private $ptleg;
    
    /**
     * @var PTDeparture The departure of this step.
     */
    private $ptdeparture;
    
    /**
     * @var PTArrival The arrival of this step.
     */
    private $ptarrival;

    /**
     * @var String Geometric path of this step
     */
    private $geometry;

    public function __construct($id)
    {
        $this->id = $id;
        $this->setPosition($id);
    }
    
    public function getId(): int
    {
        return $this->id;
    }
    
    public function setId(int $id): self
    {
        $this->id = $id;
        
        return $this;
    }
    
    public function getDistance(): ?int
    {
        return $this->distance;
    }
    
    public function setDistance(?int $distance): self
    {
        $this->distance = $distance;
        
        return $this;
    }
    
    public function getDuration(): ?int
    {
        return $this->duration;
    }
    
    public function setDuration(?int $duration): self
    {
        $this->duration = $duration;
        
        return $this;
    }
    
    public function getPosition(): int
    {
        return $this->position;
    }
    
    public function setPosition(int $position): self
    {
        $this->position = $position;
        
        return $this;
    }
    
    public function isLast(): ?bool
    {
        return $this->isLast;
    }
    
    public function setIsLast(bool $isLast): self
    {
        $this->isLast = $isLast;
        
        return $this;
    }
    
    public function getMagneticDirection(): ?string
    {
        return $this->magneticDirection;
    }
    
    public function setMagneticDirection(?string $magneticDirection): self
    {
        $this->magneticDirection = $magneticDirection;
        
        return $this;
    }
    
    public function getRelativeDirection(): ?string
    {
        return $this->relativeDirection;
    }
    
    public function setRelativeDirection(?string $relativeDirection): self
    {
        $this->relativeDirection = $relativeDirection;
        
        return $this;
    }
    
    public function getPTLeg(): PTLeg
    {
        return $this->ptleg;
    }
    
    public function setPTLeg(PTLeg $ptleg): self
    {
        $this->ptleg = $ptleg;
        
        return $this;
    }
    
    public function getPTDeparture(): PTDeparture
    {
        return $this->ptdeparture;
    }
    
    public function setPTDeparture(PTDeparture $ptdeparture): self
    {
        $this->ptdeparture = $ptdeparture;
        
        return $this;
    }
    
    public function getPTArrival(): PTArrival
    {
        return $this->ptarrival;
    }
    
    public function setPTArrival(PTArrival $ptarrival): self
    {
        $this->ptarrival = $ptarrival;
        
        return $this;
    }

    public function getGeometry(): ?String
    {
        return $this->geometry;
    }

    public function setGeometry(String $geometry): self
    {
        $this->geometry = $geometry;

        return $this;
    }
}