mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
24 lines
513 B
PHP
24 lines
513 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Config;
|
|
|
|
/**
|
|
* Class AudioConstants.
|
|
*/
|
|
class AudioConstants
|
|
{
|
|
final public const DEFAULT_DISK_QUALIFIED = 'audio.default_disk';
|
|
|
|
final public const DISKS_QUALIFIED = 'audio.disks';
|
|
|
|
final public const NGINX_REDIRECT_QUALIFIED = 'audio.nginx_redirect';
|
|
|
|
final public const PATH_QUALIFIED = 'audio.path';
|
|
|
|
final public const STREAMING_METHOD_QUALIFIED = 'audio.streaming_method';
|
|
|
|
final public const URL_QUALIFIED = 'audio.url';
|
|
}
|