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