Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / html / metacode / converter / AbstractMetacodeConverter.class.php
1 <?php
2
3 namespace wcf\system\html\metacode\converter;
4
5 /**
6 * Default implementation for metacode converters.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\System\Html\Metacode\Converter
12 * @since 3.0
13 */
14 abstract class AbstractMetacodeConverter implements IMetacodeConverter
15 {
16 /**
17 * @inheritDoc
18 */
19 public function validateAttributes(array $attributes)
20 {
21 return true;
22 }
23 }