You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace App\Admin\Transforms; // 定义命名空间
|
|
|
|
/**
|
|
* 转换接口
|
|
*
|
|
* 该接口定义了一个转换方法,所有实现此接口的类都需提供具体的转换逻辑。
|
|
*/
|
|
interface Transform
|
|
{
|
|
/**
|
|
* 转换方法
|
|
*
|
|
* @param mixed $trans 需要转换的值,可以是任何类型
|
|
* @return mixed 返回转换后的值,类型可以根据具体实现而定
|
|
*/
|
|
public static function trans($trans);
|
|
}
|