Completed
Push — master ( 674c45...3a5716 )
by John
02:35
created

DateFormatterDayOfYearFixedLength::format()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
ccs 3
cts 3
cp 1
crap 1
1
<?php
2
3
namespace Graze\CiffRenderer\DateFormatter;
4
5
use Graze\CiffRenderer\DateFormatter\DateFormatterInterface;
6
7
class DateFormatterDayOfYearFixedLength implements DateFormatterInterface
8
{
9
    /**
10
     * @param \DateTimeInterface $date
11
     * @param string $format
12
     * @return string
13
     */
14 1
    public function format(\DateTimeInterface $date, $format)
15
    {
16
        // Clarisoft starts from 1, PHP from 0
17 1
        $dayOfYear = (string) $date->format('z') + 1;
18 1
        return (string) str_pad($dayOfYear, 3, '0', STR_PAD_LEFT);
19
    }
20
21
    /**
22
     * @return DateFormatterInterface
23
     */
24 1
    public static function factory()
25
    {
26 1
        return new static();
27
    }
28
}
29