Completed
Push — master ( a67fbc...6c0a08 )
by Samuel
11s
created

UntilTransformer::transform()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Recurrence\RruleTransformer;
4
5
class UntilTransformer extends DtStartTransformer
6
{
7
    const RRULE_PARAMETER = 'UNTIL';
8
9
    /**
10
     * @param string $rRule
11
     * @return \DateTime
12
     */
13
    public function transform($rRule)
14
    {
15
        return parent::transform($rRule);
16
    }
17
}