Changeset 887 for trunk/Modules/TimeMeasure/Graph.php
- Timestamp:
- Nov 20, 2020, 12:08:12 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/TimeMeasure/Graph.php
r874 r887 9 9 var $DefaultHeight; 10 10 11 function __construct( $System)11 function __construct(System $System) 12 12 { 13 13 parent::__construct($System); … … 17 17 } 18 18 19 function Show() 19 function Show(): string 20 20 { 21 21 $this->ClearPage = true; 22 return $this->Render(); 22 $this->Render(); 23 return ''; 23 24 } 24 25 25 function Render() 26 function Render(): void 26 27 { 27 28 $PrefixMultiplier = new PrefixMultiplier();
Note:
See TracChangeset
for help on using the changeset viewer.