16 lines
524 B
PHP
Raw Normal View History

2020-03-19 03:40:29 +00:00
<?php declare(strict_types=1);
class ETServerInfo extends ExtensionInfo
{
public const KEY = "et_server";
public string $key = self::KEY;
public string $name = "System Info Registry";
public string $url = self::SHIMMIE_URL;
public array $authors = self::SHISH_AUTHOR;
public string $license = self::LICENSE_GPLV2;
public string $description = "Keep track of shimmie registrations";
public ?string $documentation = "For internal use";
public string $visibility = self::VISIBLE_HIDDEN;
2020-03-19 03:40:29 +00:00
}