Completed
Pull Request — master (#3)
by Artem
01:05
created

DateFormatHelper::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
/*
3
 * This file is part of the FreshCommonApiBundle
4
 *
5
 * (c) Artem Henvald <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
declare(strict_types=1);
12
13
namespace Fresh\CommonApiBundle\Helper;
14
15
/**
16
 * DateFormatHelper.
17
 *
18
 * @author Artem Henvald <[email protected]>
19
 */
20
final class DateFormatHelper
21
{
22
    public const LAST_MODIFIED_DATE_FORMAT = 'D, d M Y H:i:s \G\M\T';
23
24
    /**
25
     * Constructor.
26
     */
27
    private function __construct()
28
    {
29
    }
30
}
31