xref: /plugin/embeddedphp/syntax/phpblock.php (revision 342878947cddb04a618398a24f92b5f480e65e3c) !
1<?php
2/**
3 * DokuWiki Plugin embeddedphp (Syntax Component)
4 *
5 * @license MIT https://mit-license.org
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