| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function __construct(string $string) |
||
| 30 | { |
||
| 31 | $this->string = $string; |
||
| 32 | $this->dateTimeObject = new DateTime($this->string); |
||
| 33 | |||
| 34 | $this->datetime = $this->dateTimeObject->format('c'); |
||
| 35 | $this->sentence = $this->dateTimeObject->format('l M jS, Y, \a\t g:ia'); |
||
| 36 | $this->short = $this->dateTimeObject->format('M jS, Y'); |
||
| 37 | } |
||
| 44 |