| 1 | <?php |
||
| 10 | class DryContainer implements ContainerInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var float |
||
| 14 | */ |
||
| 15 | private $loadCapacity; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * DryContainer constructor. |
||
| 19 | * @param float $loadCapacity |
||
| 20 | */ |
||
| 21 | 4 | public function __construct(float $loadCapacity) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return float |
||
| 28 | */ |
||
| 29 | 4 | public function getLoadCapacity(): float |
|
| 33 | } |
||
| 34 |