[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Extension/ -> CLIPlugin.php (source)

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