xref: /plugin/embeddedphp/syntax/phpblock.php (revision ded54c4c7d96bc89dd6381a52c82daac367c9a5f) !
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