Files
2024-07-08 03:32:47 +09:00

16 lines
250 B
PHP

<?php
namespace dokuwiki\Extension;
use splitbrain\phpcli\CLI;
/**
* CLI plugin prototype
*
* Provides DokuWiki plugin functionality on top of php-cli
*/
abstract class CLIPlugin extends CLI implements PluginInterface
{
use PluginTrait;
}