Laravel Vapor - Code sync with Shipping Portal, Version 2 of Commands

This commit is contained in:
Dillon Ngo
2023-12-31 04:46:15 +08:00
parent ff53e16ceb
commit 5186369d8a
15 changed files with 663 additions and 1 deletions
@@ -0,0 +1,26 @@
<?php
namespace App\Classes\Modules\Jobs\DataTransferObjects;
use App\Classes\General\Interfaces\DataTransferObject;
class DeleteOrderV2CommandObject implements DataTransferObject
{
/** @var string */
private $bookingsReference;
public function __construct(string $bookingsReference)
{
$this->bookingsReference = $bookingsReference;
}
/**
* @return string
*/
public function getBookingsReference(): string
{
return $this->bookingsReference;
}
}