mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/11667] Use @inheritdoc
PHPBB3-11667
This commit is contained in:
parent
485c6ab355
commit
bf04bfcced
2 changed files with 4 additions and 14 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue