aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Parsing/ParserMode/Plugin.php
blob: 5023af6050b7a2032c9260ed30f23681b1b57057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace dokuwiki\Parsing\ParserMode;

use dokuwiki\Extension\PluginInterface;
use dokuwiki\Extension\PluginTrait;

/**
 * A syntax Plugin is a ParserMode
 */
abstract class Plugin extends AbstractMode implements PluginInterface
{
    use PluginTrait;
}