Ignore:
Timestamp:
Nov 24, 2020, 10:58:56 AM (3 years ago)
Author:
chronos
Message:
  • Modified: More static types added.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Meteostation/Meteostation.php

    r887 r888  
    2121class MeteoStation extends Model
    2222{
    23   var $Id;
    24   var $Name;
    25   var $Period;
    26   var $URL;
     23  public int $Id;
     24  public string $Name;
     25  public int $Period;
     26  public string $URL;
    2727
    2828  function DownloadData(): void
     
    5454  }
    5555
    56   function CreateImage($FileName): void
     56  function CreateImage(string $FileName): void
    5757  {
    5858    $Image = new Image();
     
    7979class ModuleMeteoStation extends AppModule
    8080{
    81   var $Data;
    82 
    8381  function __construct(System $System)
    8482  {
Note: See TracChangeset for help on using the changeset viewer.