src/DTO/StationMeteoDTO.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\DTO;
  3. /*
  4.  * To change this license header, choose License Headers in Project Properties.
  5.  * To change this template file, choose Tools | Templates
  6.  * and open the template in the editor.
  7.  */
  8. /**
  9.  * Description of UploadFichierDTO
  10.  *
  11.  * @author lenovo
  12.  */
  13. class StationMeteoDTO {
  14.     
  15.     private $apikey;
  16.     private $stationAPI;
  17.     private $annee;
  18.     
  19.     public function getAnnee() {
  20.         return $this->annee;
  21.     }
  22.     public function setAnnee($annee): void {
  23.         $this->annee $annee;
  24.     }
  25.     
  26.     public function getApikey() {
  27.         return $this->apikey;
  28.     }
  29.     public function getStationAPI() {
  30.         return $this->stationAPI;
  31.     }
  32.     public function setApikey($apikey): void {
  33.         $this->apikey $apikey;
  34.     }
  35.     public function setStationAPI($stationAPI): void {
  36.         $this->stationAPI $stationAPI;
  37.     }
  38. }