Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.2098 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | 2 | public function getEndDateTime(string $timezone = 'America/New_York'): ?DateTime |
|
44 | { |
||
45 | 2 | if (!isset($this->extraArgs()['EndDateTime'])) { |
|
46 | 1 | return null; |
|
47 | } |
||
48 | |||
49 | try { |
||
50 | 1 | $endDateTime = new DateTime($this->extraArgs()['EndDateTime'], new DateTimeZone($timezone)); |
|
51 | |||
52 | 1 | return $endDateTime; |
|
53 | } catch (Throwable $e) { |
||
54 | return null; |
||
55 | } |
||
78 |