mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +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:
|
||
|
}
|
||
|
}
|