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