for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Main Class of \KEINOS\MSTDN_TOOLS\Config.
*
* Public method/properties must be defined here.
* Note:
* - The only public method "__construct()" was defined in "ConfigProtectedMethods".
* - Constants even public must be defined in "ConfigConstants".
* - Public but static method/properties must be defined in "ConfigStaticMethods".
* - Protected methods/properties must be defined in "ConfigProtectedMethods".
*/
declare(strict_types=1);
namespace KEINOS\MSTDN_TOOLS;
final class Config extends ConfigProtectedMethods
{
// Public method "__construct()" was defined in "ConfigProtectedMethods".
//public function __construct()
public function getUrlHost(): string
return $this->url_host;
}
* @return array<mixed,mixed>
public function getInfoServer(): array
return $this->info_server;