Skip to content
Snippets Groups Projects
Select Git revision
  • efa9d6d7a074b1bc5d4fc906c7ae66032a109993
  • develop default protected
  • 1.3 protected
  • 1.1
  • 1.2 protected
  • 1.0
  • 13-export-cli-command
  • 1.7.0
  • 1.6.0
  • 1.5.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4.0
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.1.4
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.0.6
27 results

CmsBlockRepository.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;
    }