src/Entity/Weather.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\WeatherRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=WeatherRepository::class)
  7.  */
  8. class Weather
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="datetime", nullable=true)
  18.      */
  19.     private $date;
  20.     /**
  21.      * @ORM\Column(type="integer", nullable=true)
  22.      */
  23.     private $time;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $weather;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $location;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $rain;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getDate(): ?\DateTimeInterface
  41.     {
  42.         return $this->date;
  43.     }
  44.     public function setDate(?\DateTimeInterface $date): self
  45.     {
  46.         $this->date $date;
  47.         return $this;
  48.     }
  49.     public function getTime(): ?int
  50.     {
  51.         return $this->time;
  52.     }
  53.     public function setTime(?int $time): self
  54.     {
  55.         $this->time $time;
  56.         return $this;
  57.     }
  58.     public function getWeather(): ?string
  59.     {
  60.         return $this->weather;
  61.     }
  62.     public function setWeather(?string $weather): self
  63.     {
  64.         $this->weather $weather;
  65.         return $this;
  66.     }
  67.     public function getLocation(): ?string
  68.     {
  69.         return $this->location;
  70.     }
  71.     public function setLocation(?string $location): self
  72.     {
  73.         $this->location $location;
  74.         return $this;
  75.     }
  76.     public function getRain(): ?string
  77.     {
  78.         return $this->rain;
  79.     }
  80.     public function setRain(?string $rain): self
  81.     {
  82.         $this->rain $rain;
  83.         return $this;
  84.     }
  85. }