blob: 03637fe4da4efad9d35bd8ecb0cce5653a2bd8b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace dokuwiki\Extension;
/**
* DokuWiki Base Plugin
*
* Most plugin types inherit from this class
*/
abstract class Plugin implements PluginInterface
{
use PluginTrait;
}
|