mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
21 lines
324 B
PHP
21 lines
324 B
PHP
<?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:
|
|
}
|
|
}
|