12 lines
207 B
PHP
12 lines
207 B
PHP
<?php
|
|
|
|
namespace App\Constants;
|
|
|
|
class ConfigCode
|
|
{
|
|
const string TODAY_CUT_OFF_TIME_KEY = 'TodayCutOffTime';
|
|
|
|
const array DEFAULT_VALUE = [
|
|
self::TODAY_CUT_OFF_TIME_KEY => '15:00:00'
|
|
];
|
|
} |