| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 71.43% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class DatetimeResult extends AbstractResult |
||
| 11 | { |
||
| 12 | 1 | public function __construct(stdClass $data) |
|
| 13 | { |
||
| 14 | 1 | parent::__construct($data, 'datetimeResult'); |
|
| 15 | 1 | } |
|
| 16 | |||
| 17 | 1 | public function datetime(): string |
|
| 18 | { |
||
| 19 | 1 | return $this->get('datetime'); |
|
| 20 | } |
||
| 21 | |||
| 22 | public function error(): string |
||
| 25 | } |
||
| 26 | } |
||
| 27 |