mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
8a28eb1790
This reverts merge request !5
14 lines
259 B
PHP
14 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Steps;
|
|
|
|
|
|
use App\Classes\Constants;
|
|
|
|
class ModularStep
|
|
{
|
|
public function warehouseModule(string $type): string {
|
|
return $type ? Constants::ORDER_MODULE_WAREHOUSE : Constants::ORDER_MODULE_NO_WAREHOUSE;
|
|
}
|
|
|
|
} |