File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/Shipments/ProviderAdapters/Komma.php
<?php declare(strict_types=1);
namespace App\Shipments\ProviderAdapters;
use App\Shipments\Shipment;
use Illuminate\Http\Response;
use Illuminate\Support\Collection;
/**
* Class Komma
*
* A shipment service provider for testing purposes
*
* @package App\Shipments\ProviderAdapters
*/
class Komma extends AbstractShippingProviderAdapter
{
public function createShipments(Collection $shipments): Collection
{
// TODO: Implement createShipments() method.
}
public function createShipment(Shipment $shipment): Shipment
{
// TODO: Implement createShipment() method.
}
public function cancelShipment(Shipment $shipment): Shipment
{
// TODO: Implement cancelShipment() method.
}
public function shipmentServiceProviderSendsMails(): bool
{
// TODO: Implement shipmentServiceProviderSendsMails() method.
}
public function processShipmentProviderResponse(): \Symfony\Component\HttpFoundation\Response
{
// TODO: Implement processShipmentProviderResponse() method.
}
public function adaptShipmentProviderShipmentStatusToKmsShipmentStatus($status): string
{
// TODO: Implement adaptShipmentProviderShipmentStatusToKmsShipmentStatus() method.
}
public function adaptKmsShipmentStatusToShipmentProviderShipmentStatus($status)
{
// TODO: Implement adaptKmsShipmentStatusToShipmentProviderShipmentStatus() method.
}
public function cancelShipments(Collection $shipment): Collection
{
// TODO: Implement cancelShipments() method.
}
}