actuel-inactuel/site/plugins/kirby-seo/config/commands/hello.php

12 lines
224 B
PHP
Raw Normal View History

2025-05-13 09:03:14 +02:00
<?php
use Kirby\CLI\CLI;
return [
'description' => 'Hello world',
'args' => [],
'command' => static function (CLI $cli): void {
$cli->success('Hello world! This command is a preparation for a future release.');
}
];