1 | <?php |
||
2 | |||
3 | /* |
||
4 | * This file is part of the Neutrino package. |
||
5 | * |
||
6 | * (c) Vasil Dakov <[email protected]> |
||
7 | * |
||
8 | * For the full copyright and license information, please view the LICENSE |
||
9 | * file that was distributed with this source code. |
||
10 | */ |
||
11 | |||
12 | declare(strict_types=1); |
||
13 | |||
14 | namespace VasilDakov\Speedy\Service\Calculation; |
||
15 | |||
16 | use VasilDakov\Speedy\Traits\ToArray; |
||
17 | |||
18 | /** |
||
19 | * Class CalculationPayment. |
||
20 | * |
||
21 | * @author Vasil Dakov <[email protected]> |
||
22 | * @copyright 2009-2023 Neutrino.bg |
||
23 | * |
||
24 | * @version 1.0 |
||
25 | */ |
||
26 | class CalculationPayment |
||
27 | { |
||
28 | use ToArray; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
29 | |||
30 | private string $courierServicePayer; |
||
31 | |||
32 | 1 | public function __construct(string $courierServicePayer) |
|
33 | { |
||
34 | 1 | $this->courierServicePayer = $courierServicePayer; |
|
35 | } |
||
36 | } |
||
37 |