Ignore:
Timestamp:
Nov 20, 2020, 12:08:12 AM (3 years ago)
Author:
chronos
Message:
  • Added: Static types added to almost all classes, methods and function. Supported by PHP 7.4.
  • Fixed: Various found code issues.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/TimeMeasure/Graph.php

    r874 r887  
    99  var $DefaultHeight;
    1010
    11   function __construct($System)
     11  function __construct(System $System)
    1212  {
    1313    parent::__construct($System);
     
    1717  }
    1818
    19   function Show()
     19  function Show(): string
    2020  {
    2121    $this->ClearPage = true;
    22     return $this->Render();
     22    $this->Render();
     23    return '';
    2324  }
    2425
    25   function Render()
     26  function Render(): void
    2627  {
    2728    $PrefixMultiplier = new PrefixMultiplier();
Note: See TracChangeset for help on using the changeset viewer.