castopod/modules/Plugins/Commands/InstallCommand.php

19 lines
294 B
PHP

<?php
declare(strict_types=1);
namespace Modules\Fediverse\Commands;
use CodeIgniter\CLI\BaseCommand;
class InstallCommand extends BaseCommand
{
/**
* @param array<int|string, string|null> $params
*/
public function run(array $params): void
{
// TODO:
}
}