src/Entity/Storage.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * Storage
  8.  *
  9.  * @ORM\Table(name="storage", uniqueConstraints={@ORM\UniqueConstraint(name="name", columns={"name"})})
  10.  * @ORM\Entity()
  11.  */
  12. class Storage
  13. {
  14.     /**
  15.      * @var int
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var string
  24.      *
  25.      * @ORM\Column(name="name", type="string", length=255, nullable=false)
  26.      */
  27.     private $name;
  28.     /**
  29.      * @var float
  30.      *
  31.      * @ORM\Column(name="length", type="float", precision=10, scale=0, nullable=false)
  32.      */
  33.     private $length;
  34.     /**
  35.      * @var float
  36.      *
  37.      * @ORM\Column(name="width", type="float", precision=10, scale=0, nullable=false)
  38.      */
  39.     private $width;
  40.     /**
  41.      * @var float
  42.      *
  43.      * @ORM\Column(name="height", type="float", precision=10, scale=0, nullable=false)
  44.      */
  45.     private $height;
  46.     /**
  47.      * @var float
  48.      *
  49.      * @ORM\Column(name="total_volume", type="float", precision=10, scale=0, nullable=false)
  50.      */
  51.     private $totalVolume;
  52.     /**
  53.      * @var float
  54.      *
  55.      * @ORM\Column(name="maximum_weight", type="float", precision=10, scale=0, nullable=false)
  56.      */
  57.     private $maximumWeight;
  58.     /**
  59.      * @ORM\OneToMany(targetEntity=Shelving::class, mappedBy="storage")
  60.      */
  61.     private $shelvings;
  62.     public function __construct()
  63.     {
  64.         $this->shelvings = new ArrayCollection();
  65.     }
  66.     public function getId(): ?int
  67.     {
  68.         return $this->id;
  69.     }
  70.     public function getName(): ?string
  71.     {
  72.         return $this->name;
  73.     }
  74.     public function setName(string $name): self
  75.     {
  76.         $this->name $name;
  77.         return $this;
  78.     }
  79.     public function getLength(): ?float
  80.     {
  81.         return $this->length;
  82.     }
  83.     public function setLength(float $length): self
  84.     {
  85.         $this->length $length;
  86.         return $this;
  87.     }
  88.     public function getWidth(): ?float
  89.     {
  90.         return $this->width;
  91.     }
  92.     public function setWidth(float $width): self
  93.     {
  94.         $this->width $width;
  95.         return $this;
  96.     }
  97.     public function getHeight(): ?float
  98.     {
  99.         return $this->height;
  100.     }
  101.     public function setHeight(float $height): self
  102.     {
  103.         $this->height $height;
  104.         return $this;
  105.     }
  106.     public function getTotalVolume(): ?float
  107.     {
  108.         return $this->totalVolume;
  109.     }
  110.     public function setTotalVolume(float $totalVolume): self
  111.     {
  112.         $this->totalVolume $totalVolume;
  113.         return $this;
  114.     }
  115.     public function getMaximumWeight(): ?float
  116.     {
  117.         return $this->maximumWeight;
  118.     }
  119.     public function setMaximumWeight(float $maximumWeight): self
  120.     {
  121.         $this->maximumWeight $maximumWeight;
  122.         return $this;
  123.     }
  124.     public function __toString()
  125.     {
  126.         return $this->name;
  127.     }
  128.     /**
  129.      * @return Collection<int, Shelving>
  130.      */
  131.     public function getShelvings(): Collection
  132.     {
  133.         return $this->shelvings;
  134.     }
  135.     public function addShelving(Shelving $shelving): self
  136.     {
  137.         if (!$this->shelvings->contains($shelving)) {
  138.             $this->shelvings[] = $shelving;
  139.             $shelving->setStorage($this);
  140.         }
  141.         return $this;
  142.     }
  143.     public function removeShelving(Shelving $shelving): self
  144.     {
  145.         if ($this->shelvings->removeElement($shelving)) {
  146.             // set the owning side to null (unless already changed)
  147.             if ($shelving->getStorage() === $this) {
  148.                 $shelving->setStorage(null);
  149.             }
  150.         }
  151.         return $this;
  152.     }
  153. }