blob: 9cd0ae80526287d78a9f72c343ebe8ffcbc001f2 (
plain) (
tree)
|
|
<?php
/**
* DokuWiki Plugin
*
* Most of DokuWiki's plugin types simply inherit from this. All it does is
* add the DokuWiki_PluginTrait to the class.
*/
class DokuWiki_Plugin implements DokuWiki_PluginInterface {
use DokuWiki_PluginTrait;
}
|