OrderExportServiceInterface
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
exportOrder() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * File:OrderExportServiceInterface.php
6
 *
7
 * @author      Maciej Sławik <[email protected]>
8
 * Github:      https://github.com/maciejslawik
9
 */
10
11
namespace MSlwk\GenericOrderExport\Api;
12
13
use Magento\Sales\Api\Data\OrderInterface;
14
15
/**
16
 * Interface OrderExportServiceInterface
17
 * @package MSlwk\GenericOrderExport\Api
18
 */
19
interface OrderExportServiceInterface
20
{
21
    /**
22
     * @param OrderInterface $order
23
     * @return void
24
     */
25
    public function exportOrder(OrderInterface $order): void;
26
}
27