| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ManifestRequest extends Request implements RequestInterface |
||
| 8 | { |
||
| 9 | private $date; |
||
| 10 | |||
| 11 | public function __construct(Authentication $authentication, \DateTime $date) |
||
| 12 | { |
||
| 13 | parent::__construct($authentication); |
||
| 14 | |||
| 15 | $this->date = $date; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function toArray(): array |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | } |