-
Notifications
You must be signed in to change notification settings - Fork 0
Switch
B0Bka edited this page Dec 19, 2019
·
5 revisions
switch ($status){
case 'N':
$result = '0';
break;
case in_array($status, $this->sucessStatus):
$result = '3';
break;
case in_array($status, $this->cancelStatus):
$result = '4';
break;
default :
$result = '10';
break;
}