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/Network/Hosting.php

    r874 r887  
    33class PageHosting extends Page
    44{
    5   var $FullTitle = 'Hostované projekty';
    6   var $ShortTitle = 'Hostované projekty';
    7   var $ParentClass = 'PageNetwork';
     5  function __construct(System $System)
     6  {
     7    parent::__construct($System);
     8    $this->FullTitle = 'Hostované projekty';
     9    $this->ShortTitle = 'Hostované projekty';
     10    $this->ParentClass = 'PageNetwork';
     11  }
    812
    9   function Show()
     13  function Show(): string
    1014  {
    1115    $Output = '<br /><table class="WideTable"><tr><th>Název projektu</th><th>Založeno</th><th>Umístění na serveru</th><th>Zodpovědná osoba</th></tr>';
Note: See TracChangeset for help on using the changeset viewer.