aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-07-23 11:16:23 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-07-23 11:16:23 -0500
commitbf04bfcced7934704e7f2682ee608f490cb3fc76 (patch)
tree362bd27fad2e1fe08e6649b27b3ab4baa247fee6 /phpBB/phpbb
parent485c6ab3553f518b157610ee1144bbcbef63f797 (diff)
downloadforums-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.php9
-rw-r--r--phpBB/phpbb/template/twig/node/includejs.php9
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)
{