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