vasildakov /
speedy
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace VasilDakov\Speedy\Service\Calculation; |
||
| 6 | |||
| 7 | use VasilDakov\Speedy\Traits\ToArray; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Class CalculationContent. |
||
| 11 | * |
||
| 12 | * @author Vasil Dakov <[email protected]> |
||
| 13 | * @copyright 2009-2022 Neutrino.bg |
||
| 14 | * |
||
| 15 | * @version 1.0 |
||
| 16 | */ |
||
| 17 | class CalculationContent |
||
| 18 | { |
||
| 19 | use ToArray; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 20 | |||
| 21 | 1 | public function __construct( |
|
| 22 | public int $parcelsCount, |
||
| 23 | public float $totalWeight, |
||
| 24 | public bool $documents, |
||
| 25 | public bool $palletized, |
||
| 26 | ) { |
||
| 27 | 1 | } |
|
| 28 | } |
||
| 29 |