xref: /dokuwiki/lib/plugins/cli.php (revision eb8d789e05c1d5726e56c09a7f88fff58875fb2c)
1*eb8d789eSAndreas Gohr<?php
2*eb8d789eSAndreas Gohr
3*eb8d789eSAndreas Gohr/**
4*eb8d789eSAndreas Gohr * Base class for CLI plugins
5*eb8d789eSAndreas Gohr *
6*eb8d789eSAndreas Gohr * Provides DokuWiki plugin functionality on top of phpcli
7*eb8d789eSAndreas Gohr */
8*eb8d789eSAndreas Gohrabstract class DokuWiki_CLI_Plugin extends \splitbrain\phpcli\CLI implements DokuWiki_PluginInterface {
9*eb8d789eSAndreas Gohr    use DokuWiki_PluginTrait;
10*eb8d789eSAndreas Gohr
11*eb8d789eSAndreas Gohr}
12