Files
zhamao-framework/src/ZM/Command/NonPharLoadModeOnly.php
2022-12-17 22:30:19 +08:00

21 lines
370 B
PHP

<?php
declare(strict_types=1);
namespace ZM\Command;
trait NonPharLoadModeOnly
{
protected function shouldExecute(): bool
{
if (\Phar::running() === '') {
return true;
}
if (method_exists($this, 'error')) {
$this->error('此命令只能在非 Phar 模式下使用!');
}
return false;
}
}