| Total Complexity | 2 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class ShippingService implements ShippingServiceInterface |
||
| 22 | { |
||
| 23 | use ServiceTrait; |
||
| 24 | |||
| 25 | /** @var EwarehousingClient */ |
||
| 26 | protected $client; |
||
| 27 | |||
| 28 | /** @var SerializerInterface */ |
||
| 29 | protected $serializer; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * OrderService constructor. |
||
| 33 | * |
||
| 34 | * @param EwarehousingClient $client |
||
| 35 | * @param SerializerInterface $serializer |
||
| 36 | */ |
||
| 37 | public function __construct(EwarehousingClient $client, SerializerInterface $serializer) |
||
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | * |
||
| 46 | * @return ShippingResponse[] |
||
| 47 | */ |
||
| 48 | public function getShippingMethods( |
||
| 65 |