1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-17 17:56:25 +02:00

[ticket/13508] Add include_css() and fix include_js() code linting issues

PHPBB3-13508
This commit is contained in:
Marc Alexander
2021-10-07 21:19:35 +02:00
parent 7efddcef54
commit 02e5a7afc4
5 changed files with 74 additions and 5 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\template\twig\tokenparser;
class include_css extends includecss
{
/**
* Gets the tag name associated with this token parser.
*
* @return string The tag name
*/
public function getTag(): string
{
return 'include_css';
}
}