mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
18 lines
294 B
PHP
18 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:
|
|
}
|
|
}
|