xref: /plugin/embeddedphp/syntax/phpblock.php (revision a8b485ccbd922c76b25d3f244a384ad9d11471b2)
1<?php
2/**
3 * DokuWiki Plugin embeddedphp (Syntax Component)
4 *
5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
6 * @author	fiwswe <dwplugin@fwml.de>
7 */
8
9class syntax_plugin_embeddedphp_phpblock extends syntax_plugin_embeddedphp_phpinline
10{
11	/** @inheritDoc */
12	protected function GetTag(): string
13	{
14		return 'PHP';
15	}
16
17	/** @inheritDoc */
18	protected function isBlockElement(): bool
19	{
20		return true;
21	}
22}
23
24