mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 20:25:05 +02:00
15 lines
270 B
PHP
15 lines
270 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Config;
|
|
|
|
class DumpConstants
|
|
{
|
|
final public const string DISK_QUALIFIED = 'dump.disk';
|
|
|
|
final public const string PATH_QUALIFIED = 'dump.path';
|
|
|
|
final public const string URL_QUALIFIED = 'dump.url';
|
|
}
|