1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/14264] Don't use constants as return values

This will prevent BC breaking in the future if we decide to
get rid of constants.

PHPBB3-14264
This commit is contained in:
Oliver Schramm
2015-10-29 01:48:52 +01:00
parent 8b7f711a18
commit 2016550a32
9 changed files with 18 additions and 67 deletions

View File

@@ -27,12 +27,4 @@ class forum_description extends \phpbb\textreparser\row_based_plugin
'options' => 'forum_desc_options',
);
}
/**
* {@inheritdoc}
*/
public function get_table_name()
{
return FORUMS_TABLE;
}
}