1<?php 2 3namespace dokuwiki\Extension; 4 5/** 6 * CLI plugin prototype 7 * 8 * Provides DokuWiki plugin functionality on top of php-cli 9 */ 10abstract class CLIPlugin extends \splitbrain\phpcli\CLI implements PluginInterface 11{ 12 use PluginTrait; 13} 14