mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-02 14:25:38 +08:00
16 lines
367 B
PHP
16 lines
367 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Plugin\Strategy;
|
|
|
|
class ComposerStrategy extends PluginInstallStrategy
|
|
{
|
|
public function install(array $option = []): bool
|
|
{
|
|
// TODO: Composer 类型的插件还没有实现怎么安装,但很简单。这次 Commit 我偏要鸽!
|
|
$this->error = 'Not implemented';
|
|
return false;
|
|
}
|
|
}
|