castopod/modules/Plugins/Commands/InstallCommand.php

21 lines
324 B
PHP
Raw Normal View History

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