移除冗余代码

This commit is contained in:
2026-04-01 16:36:45 +08:00
parent 2ee78b3239
commit 3438c711f0
3 changed files with 0 additions and 93 deletions

View File

@@ -1,31 +0,0 @@
<?php
namespace app\admin\validate\mall;
use think\Validate;
class Player extends Validate
{
protected $failException = true;
/**
* 验证规则
*/
protected $rule = [
];
/**
* 提示消息
*/
protected $message = [
];
/**
* 验证场景
*/
protected $scene = [
'add' => [],
'edit' => [],
];
}