| 1 | <?php declare(strict_types = 1); |
||
| 8 | class TimeInterval |
||
| 9 | { |
||
| 10 | private $intervalOffset; |
||
| 11 | private $intervalLength; |
||
| 12 | private $leadingData; |
||
| 13 | private $trailingData; |
||
| 14 | private $interval; |
||
| 15 | |||
| 16 | 11 | public function __construct( |
|
| 30 | |||
| 31 | 1 | public function getInterval() : DateInterval |
|
| 35 | |||
| 36 | 1 | public function getIntervalOffset() : int |
|
| 40 | |||
| 41 | 1 | public function getIntervalLength() : int |
|
| 45 | |||
| 46 | 2 | public function getLeadingData() : string |
|
| 50 | |||
| 51 | 2 | public function getTrailingData() : string |
|
| 55 | } |
||
| 56 |