HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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.
    }
}