File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ excludes = []
7
7
null_type_hint = " pipe"
8
8
9
9
[linter ]
10
- level = " Error"
11
10
default_plugins = true
12
11
plugins = [" phpunit" ]
13
12
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ enum FormatPattern: string implements DefaultInterface
16
16
{
17
17
case Rfc2822 = 'EEE, dd MMM yyyy HH:mm:ss Z ' ;
18
18
case Iso8601 = 'yyyy-MM-dd \'T \'HH:mm:ss.SSSXXX ' ;
19
+ case Iso8601WithoutMicroseconds = 'yyyy-MM-dd \'T \'HH:mm:ssXXX ' ;
19
20
case Http = 'EEE, dd MMM yyyy HH:mm:ss zzz ' ;
20
21
case Cookie = 'EEEE, dd-MMM-yyyy HH:mm:ss zzz ' ;
21
22
case SqlDate = 'yyyy-MM-dd ' ;
@@ -25,6 +26,7 @@ enum FormatPattern: string implements DefaultInterface
25
26
case IsoOrdinalDate = 'yyyy-DDD ' ;
26
27
case JulianDay = 'yyyy DDD ' ;
27
28
case Rfc3339 = 'yyyy-MM-dd \'T \'HH:mm:ss.SSSZZZZZ ' ;
29
+ case Rfc3339WithoutMicroseconds = 'yyyy-MM-dd \'T \'HH:mm:ssZZZZZ ' ;
28
30
case UnixTimestamp = 'U ' ;
29
31
case SimpleDate = 'dd/MM/yyyy ' ;
30
32
case American = 'MM/dd/yyyy ' ;
You can’t perform that action at this time.
0 commit comments