App\Console\Commands\PluginComposerSync::fire PHP 메소드

fire() 공개 메소드

Execute the console command.
public fire ( ComposerFileWriter $writer ) : boolean | null
$writer Xpressengine\Plugin\Composer\ComposerFileWriter
리턴 boolean | null
    public function fire(ComposerFileWriter $writer)
    {
        // php artisan plugin:sync-composer
        // sync
        $writer->resolvePlugins()->setFixMode()->write();
        $this->output->success("The installation information of the plug-in was synchronized with the composer file(" . $writer->getPath() . ").");
    }
PluginComposerSync