vd/app/Domains/Real/Services/CommonService.php
2018-12-17 15:19:38 +08:00

28 lines
526 B
PHP

<?php
namespace App\Domains\Real\Services;
class CommonService
{
/**
* 格式化支付频道
*
* @param int $int
* @return string
*/
public static function transformerPayChannel($payChannel)
{
switch ($payChannel) {
case 'tmxx':
$payChannel = 'tmall';
break;
case 'yhzz':
$payChannel = 'bank';
break;
default:
break;
}
return $payChannel;
}
}