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