1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[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
{
/**
* 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)
{

View File

@ -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)
{