Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
DateTimeFormat
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3// ╔════════════════════════════════════════════════════════════╗
4// ║ MIT Licence (#Expat) - https://opensource.org/licenses/MIT ║
5// ║ Copyright 2026 Frederic Poeydomenge <dyno@phexium.com>     ║
6// ╚════════════════════════════════════════════════════════════╝
7
8declare(strict_types=1);
9
10namespace Phexium\Domain\Constant;
11
12final class DateTimeFormat
13{
14    public const string SQL_DATETIME = 'Y-m-d H:i:s';
15
16    public const string SQL_DATE = 'Y-m-d';
17
18    public const string SQL_TIME = 'H:i:s';
19}