AzuraCast/src/Radio/Certificate.php

25 lines
366 B
PHP
Raw Normal View History

<?php
2021-07-19 07:53:45 +02:00
declare(strict_types=1);
namespace App\Radio;
class Certificate
{
2021-04-23 07:24:12 +02:00
public function __construct(
protected string $keyPath,
protected string $certPath
) {
}
2020-07-09 04:32:34 +02:00
public function getKeyPath(): string
{
return $this->keyPath;
}
public function getCertPath(): string
{
return $this->certPath;
}
}