13 lines
No EOL
266 B
PHP
13 lines
No EOL
266 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace GamesShop\Environment;
|
|
|
|
final readonly class DiscordEnvironment
|
|
{
|
|
public function __construct(
|
|
public string $clientId,
|
|
public string $clientSecret,
|
|
public string $loginUrl,
|
|
) {}
|
|
} |