Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | class PluginVersionResponseEntity extends ResponseEntity |
||
29 | { |
||
30 | /** @var string */ |
||
31 | protected $filename; |
||
32 | |||
33 | /** @var string */ |
||
34 | protected $version; |
||
35 | |||
36 | /** @var \DateTime */ |
||
37 | protected $createdAt; |
||
38 | |||
39 | /** @var string */ |
||
40 | protected $minCmsVersion; |
||
41 | |||
42 | /** @var string */ |
||
43 | protected $maxCmsVersion; |
||
44 | |||
45 | /** |
||
46 | * @param string $createdAt |
||
47 | * |
||
48 | * @throws \Exception |
||
49 | * |
||
50 | * @return $this |
||
51 | */ |
||
52 | public function setCreatedAt($createdAt) |
||
59 |