Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.3332 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
50 | 1 | public function timestamp(): DateTimeInterface |
|
51 | { |
||
52 | 1 | if (!isset($this->data['timestamp'])) { |
|
53 | return null; |
||
54 | } |
||
55 | |||
56 | 1 | if ($this->data['timestamp'] instanceof DateTimeInterface) { |
|
57 | 1 | return $this->data['timestamp']; |
|
58 | } |
||
59 | |||
60 | return (new DateTime())->setTimestamp($this->data['timestamp']); |
||
61 | } |
||
62 | |||
79 | } |