mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-21 23:55:35 +08:00
21 lines
370 B
PHP
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;
|
|
}
|
|
}
|