[ticket/11667] Use @inheritdoc

PHPBB3-11667
This commit is contained in:
Nathan Guse 2013-07-23 11:16:23 -05:00
parent 485c6ab355
commit bf04bfcced
2 changed files with 4 additions and 14 deletions

View file

@ -10,9 +10,7 @@
class phpbb_template_twig_node_includecss extends phpbb_template_twig_node_includeasset class phpbb_template_twig_node_includecss extends phpbb_template_twig_node_includeasset
{ {
/** /**
* Get the definition name * {@inheritdoc}
*
* @return string (e.g. 'SCRIPTS')
*/ */
public function get_definition_name() 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 * {@inheritdoc}
*
* @param Twig_Compiler A Twig_Compiler instance
* @return null
*/ */
public function append_asset(Twig_Compiler $compiler) public function append_asset(Twig_Compiler $compiler)
{ {

View file

@ -10,9 +10,7 @@
class phpbb_template_twig_node_includejs extends phpbb_template_twig_node_includeasset class phpbb_template_twig_node_includejs extends phpbb_template_twig_node_includeasset
{ {
/** /**
* Get the definition name * {@inheritdoc}
*
* @return string (e.g. 'SCRIPTS')
*/ */
public function get_definition_name() 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 * {@inheritdoc}
*
* @param Twig_Compiler A Twig_Compiler instance
* @return null
*/ */
protected function append_asset(Twig_Compiler $compiler) protected function append_asset(Twig_Compiler $compiler)
{ {