<?php // +---------------------------------------------------------------------- // | Niucloud-admin 企业快速开发的saas管理平台 // +---------------------------------------------------------------------- // | 官方网址:https://www.niucloud.com // +---------------------------------------------------------------------- // | niucloud团队 版权所有 开源版本可自由商用 // +---------------------------------------------------------------------- // | Author: Niucloud Team // +---------------------------------------------------------------------- namespace app\job\sys; use core\base\BaseJob; /** * 校验文件删除是否在正常运行 */ class CheckDeleteJob extends BaseJob { public function doJob($file) { @unlink($file); return true; } }