mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
38 lines
734 B
PHP
38 lines
734 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Omair Saleh
|
|
* Date: 27/2/2019
|
|
* Time: 3:28 PM
|
|
*/
|
|
|
|
namespace App\Classes\Modules\Orders\DataTransferObjects;
|
|
|
|
|
|
class OrderStepObject
|
|
{
|
|
|
|
/** @var string */
|
|
protected $orderId;
|
|
|
|
/** @var string */
|
|
protected $currentStep;
|
|
|
|
/** @var null|string */
|
|
protected $nextStep;
|
|
|
|
/**
|
|
* OrderStepObject constructor.
|
|
* @param string $orderId
|
|
* @param string $currentStep
|
|
* @param null|string $nextStep
|
|
*/
|
|
public function __construct(string $orderId, string $currentStep, ?string $nextStep)
|
|
{
|
|
$this->orderId = $orderId;
|
|
$this->currentStep = $this->getCurrentStep();
|
|
$this->currentStep = $this->getCurrentStep();
|
|
}
|
|
|
|
|
|
} |