Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | public function __construct(int $apiVersion, float $executionTime, Carbon $lastUpdate, Carbon $timestamp) |
||
42 | { |
||
43 | $this->handleImmutableConstructor(); |
||
44 | |||
45 | $this->apiVersion = $apiVersion; |
||
46 | $this->executionTime = $executionTime; |
||
47 | $this->lastUpdated = $lastUpdate; |
||
48 | $this->timestamp = $timestamp; |
||
49 | } |
||
50 | |||
83 |