Skip to content
Snippets Groups Projects
Select Git revision
  • 3e4fc1b1c4ef46cae404b2c642d2a76ca06f54df
  • master default protected
  • improvement/rename-transport-interface
  • 1.1.0
  • 1.0.1
  • 1.0.0
6 results

PlaceErpOrderInterface.php

Blame
  • PlaceErpOrderInterface.php 821 B
    <?php
    /**
     * Copyright (c) 2020 TechDivision GmbH
     * All rights reserved
     *
     * This product includes proprietary software developed at TechDivision GmbH, Germany
     * For more information see https://www.techdivision.com/
     *
     * To obtain a valid license for using this software please contact us at
     * license@techdivision.com
     */
    declare(strict_types=1);
    
    namespace Workshop\OrderExport\Api;
    
    use Workshop\OrderExport\Api\Data\ErpOrderInterface;
    
    /**
     * @copyright  Copyright (c) 2020 TechDivision GmbH <info@techdivision.com> - TechDivision GmbH
     * @link       https://www.techdivision.com/
     * @author     Vadim Justus <v.justus@techdivision.com>
     *
     * @api
     */
    interface PlaceErpOrderInterface
    {
        /**
         * @param ErpOrderInterface $erpOrder
         */
        public function execute(ErpOrderInterface $erpOrder): void;
    }