for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* File:ExportOrderMessage.php
*
* @author Maciej Sławik <[email protected]>
* Github: https://github.com/maciejslawik
*/
namespace MSlwk\GenericOrderExport\Model\Amqp;
use MSlwk\GenericOrderExport\Api\Amqp\ExportOrderMessageInterface;
* Class ExportOrderMessage
* @package MSlwk\GenericOrderExport\Model\Amqp
class ExportOrderMessage implements ExportOrderMessageInterface
{
* @var string
private $orderId;
* @return string
public function getOrderId(): string
return $this->orderId;
}
* @param string $orderId
* @return void
public function setOrderId(string $orderId): void
$this->orderId = $orderId;