diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-01 20:05:15 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-30 17:26:00 +0200 |
commit | 459f1d4c1f26658c70d29ac7c4e3f3389a973a59 (patch) | |
tree | 15940734e6782882b1879f338cc29b72288c1735 /phpBB/phpbb/textreparser/row_based_plugin.php | |
parent | b5911281ae175340817345e63ddbfaf43abb3cec (diff) | |
download | forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar.gz forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar.bz2 forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.tar.xz forums-459f1d4c1f26658c70d29ac7c4e3f3389a973a59.zip |
[ticket/13803] Refactored test
PHPBB3-13803
Diffstat (limited to 'phpBB/phpbb/textreparser/row_based_plugin.php')
-rw-r--r-- | phpBB/phpbb/textreparser/row_based_plugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/textreparser/row_based_plugin.php b/phpBB/phpbb/textreparser/row_based_plugin.php index b946d6532b..2be0b68411 100644 --- a/phpBB/phpbb/textreparser/row_based_plugin.php +++ b/phpBB/phpbb/textreparser/row_based_plugin.php @@ -35,14 +35,14 @@ abstract class row_based_plugin extends base * * @return array */ - abstract protected function get_columns(); + abstract public function get_columns(); /** * Return the name of the table used by this plugin * * @return string */ - abstract protected function get_table_name(); + abstract public function get_table_name(); /** * Add fields to given row, if applicable |