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

UntilTransformer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 13
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A transform() 0 4 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
}