ExportOrderMessageInterface
last analyzed

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

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

2 Methods

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