ExportOrderMessageInterface::getOrderId()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
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