Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function __construct( |
||
34 | int $id, |
||
35 | string $migration, |
||
36 | int $status, |
||
37 | ?string $error, |
||
38 | \DateTime $createdAt, |
||
39 | \DateTime $updatedAt |
||
40 | ) { |
||
41 | $this->id = $id; |
||
42 | $this->migration = $migration; |
||
43 | $this->status = $status; |
||
44 | $this->error = $error; |
||
45 | $this->createdAt = $createdAt; |
||
46 | $this->updatedAt = $updatedAt; |
||
47 | } |
||
97 |