add types to api_internal extension info

This commit is contained in:
Joe 2021-12-31 00:43:31 -06:00
parent e2970a4d91
commit 8593593f95
Signed by: joe
GPG Key ID: 8595A3F8F2CE1B74
1 changed files with 5 additions and 5 deletions

View File

@ -11,9 +11,9 @@ class ApiInternalInfo extends ExtensionInfo
{
public const KEY = "api_internal";
public $key = self::KEY;
public $name = "Internal API";
public $authors = ["Daku"=>"admin@codeanimu.net", "Matthew Barbour"=>"matthew@darkholme.net"];
public $description = "Dependency extension used to provide a standardized source for performing operations via an API";
public $visibility = self::VISIBLE_HIDDEN;
public string $key = self::KEY;
public string $name = "Internal API";
public array $authors = ["Daku"=>"admin@codeanimu.net", "Matthew Barbour"=>"matthew@darkholme.net"];
public string $description = "Dependency extension used to provide a standardized source for performing operations via an API";
public string $visibility = self::VISIBLE_HIDDEN;
}