| 1 | <?php |
||
| 5 | class AspectRatio |
||
| 6 | { |
||
| 7 | private $value; |
||
| 8 | private $label; |
||
| 9 | private $checked; |
||
| 10 | |||
| 11 | public function __construct(?float $value, string $label, bool $checked = false) |
||
| 17 | |||
| 18 | public function getValue(): ?float |
||
| 22 | |||
| 23 | public function getLabel(): string |
||
| 27 | |||
| 28 | public function isChecked(): bool |
||
| 32 | } |
||
| 33 |