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