1be906b56SAndreas Gohr<?php 2be906b56SAndreas Gohr 3be906b56SAndreas Gohrnamespace dokuwiki\Parsing\ParserMode; 4be906b56SAndreas Gohr 5*e6a82646SAndreas Gohruse dokuwiki\Extension\PluginInterface; 6*e6a82646SAndreas Gohruse dokuwiki\Extension\PluginTrait; 7*e6a82646SAndreas Gohr 8be906b56SAndreas Gohr/** 9*e6a82646SAndreas Gohr * A syntax Plugin is a ParserMode 10be906b56SAndreas Gohr */ 11*e6a82646SAndreas Gohrabstract class Plugin extends AbstractMode implements PluginInterface 128c7c53b0SAndreas Gohr{ 13*e6a82646SAndreas Gohr use PluginTrait; 148c7c53b0SAndreas Gohr} 15