mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
Major incomplete Change
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?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();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user