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