1
0

/about/ + extendedGitGraph

This commit is contained in:
2018-01-21 15:29:01 +01:00
parent d77954ddae
commit 28ae8beb2d
26 changed files with 1346 additions and 48 deletions

27
www/extern/egh/EGHRemoteConfig.php vendored Normal file
View File

@@ -0,0 +1,27 @@
<?php
class EGHRemoteConfig
{
/* @var string|null */
public $Type;
/* @var string|null */
public $URL;
/* @var string|null */
public $Author;
/* @var string|null */
public $Param;
/**
* @param $typ string|null
* @param $url string|null
* @param $usr string|null
* @param $param string|null
*/
public function __construct($typ, $url, $usr, $param) {
$this->Type = $typ;
$this->URL = $url;
$this->Author = $usr;
$this->Param = $param;
}
}