2019-08-17 15:17:12 +08:00

52 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Library for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://library.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/zoujingli/ThinkLibrary
// | github 仓库地址 https://github.com/zoujingli/ThinkLibrary
// +----------------------------------------------------------------------
namespace library\command\sync;
use library\command\Sync;
use think\console\Input;
use think\console\Output;
/**
* Class Service
* @package library\command\sync
*/
class Service extends Sync
{
/**
* 指令属性配置
*/
protected function configure()
{
$this->modules = ['application/service/'];
$this->setName('xsync:service')->setDescription('[同步]覆盖本地Service模块代码');
}
/**
* 执行更新操作
* @param Input $input
* @param Output $output
*/
protected function execute(Input $input, Output $output)
{
$root = str_replace('\\', '/', env('root_path'));
if (file_exists("{$root}/application/service/sync.lock")) {
$this->output->error("--- Service 模块已经被锁定,不能继续更新");
} else {
parent::execute($input, $output);
}
}
}