xref: /dokuwiki/inc/Extension/Plugin.php (revision 03af5d65e11c987258457d7e32e79fc9aa1a78a4)
1<?php
2
3namespace dokuwiki\Extension;
4
5/**
6 * DokuWiki Base Plugin
7 *
8 * Most plugin types inherit from this class
9 */
10abstract class Plugin implements PluginInterface
11{
12    use PluginTrait;
13}
14