1, 'msg' => '{attr}必须是大于0的整数' ], // 验证土地是否属于用户 [ 'land_id', new LandOwnershipValidator($this, ['user_id', 'land']), 'msg' => '土地不存在或不属于当前用户' ], // 验证土地状态是否可收获 [ 'land_id', new HarvestableStatusValidator($this, ['land']), 'msg' => '土地状态不允许收获' ] ]; } /** * 设置默认值 * * @return array */ public function default(): array { return []; } }