diff options
Diffstat (limited to 'phpBB/phpbb/template/twig/node/includejs.php')
-rw-r--r-- | phpBB/phpbb/template/twig/node/includejs.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/phpBB/phpbb/template/twig/node/includejs.php b/phpBB/phpbb/template/twig/node/includejs.php index 7b400d9154..510e221e07 100644 --- a/phpBB/phpbb/template/twig/node/includejs.php +++ b/phpBB/phpbb/template/twig/node/includejs.php @@ -11,17 +11,18 @@ namespace phpbb\template\twig\node; class includejs extends \phpbb\template\twig\node\includeasset { + /** + * {@inheritdoc} + */ public function get_definition_name() { return 'SCRIPTS'; } /** - * Compiles the node to PHP. - * - * @param Twig_Compiler A Twig_Compiler instance - */ - protected function append_asset(\Twig_Compiler $compiler) + * {@inheritdoc} + */ + protected function append_asset(Twig_Compiler $compiler) { $config = $this->environment->get_phpbb_config(); |