diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-07-23 11:16:23 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-07-23 11:16:23 -0500 |
commit | bf04bfcced7934704e7f2682ee608f490cb3fc76 (patch) | |
tree | 362bd27fad2e1fe08e6649b27b3ab4baa247fee6 /phpBB/phpbb | |
parent | 485c6ab3553f518b157610ee1144bbcbef63f797 (diff) | |
download | forums-bf04bfcced7934704e7f2682ee608f490cb3fc76.tar forums-bf04bfcced7934704e7f2682ee608f490cb3fc76.tar.gz forums-bf04bfcced7934704e7f2682ee608f490cb3fc76.tar.bz2 forums-bf04bfcced7934704e7f2682ee608f490cb3fc76.tar.xz forums-bf04bfcced7934704e7f2682ee608f490cb3fc76.zip |
[ticket/11667] Use @inheritdoc
PHPBB3-11667
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/template/twig/node/includecss.php | 9 | ||||
-rw-r--r-- | phpBB/phpbb/template/twig/node/includejs.php | 9 |
2 files changed, 4 insertions, 14 deletions
diff --git a/phpBB/phpbb/template/twig/node/includecss.php b/phpBB/phpbb/template/twig/node/includecss.php index 450edb3e1e..a9d9b46d69 100644 --- a/phpBB/phpbb/template/twig/node/includecss.php +++ b/phpBB/phpbb/template/twig/node/includecss.php @@ -10,9 +10,7 @@ class phpbb_template_twig_node_includecss extends phpbb_template_twig_node_includeasset { /** - * Get the definition name - * - * @return string (e.g. 'SCRIPTS') + * {@inheritdoc} */ public function get_definition_name() { @@ -20,10 +18,7 @@ class phpbb_template_twig_node_includecss extends phpbb_template_twig_node_inclu } /** - * Append the output code for the asset - * - * @param Twig_Compiler A Twig_Compiler instance - * @return null + * {@inheritdoc} */ public function append_asset(Twig_Compiler $compiler) { diff --git a/phpBB/phpbb/template/twig/node/includejs.php b/phpBB/phpbb/template/twig/node/includejs.php index 50ab448e0f..2b4b55fb0a 100644 --- a/phpBB/phpbb/template/twig/node/includejs.php +++ b/phpBB/phpbb/template/twig/node/includejs.php @@ -10,9 +10,7 @@ class phpbb_template_twig_node_includejs extends phpbb_template_twig_node_includeasset { /** - * Get the definition name - * - * @return string (e.g. 'SCRIPTS') + * {@inheritdoc} */ public function get_definition_name() { @@ -20,10 +18,7 @@ class phpbb_template_twig_node_includejs extends phpbb_template_twig_node_includ } /** - * Append the output code for the asset - * - * @param Twig_Compiler A Twig_Compiler instance - * @return null + * {@inheritdoc} */ protected function append_asset(Twig_Compiler $compiler) { |