diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-06 13:01:09 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-30 17:26:00 +0200 |
commit | 212fc277b481440a99ff0483e5fbc40c790e8dda (patch) | |
tree | 9f6da7dd9e85aa065d6bb086e34865dcb1f6b8e5 /phpBB/phpbb | |
parent | d42b2fe795de913894c0cc9f1df084f8ef0c58f9 (diff) | |
download | forums-212fc277b481440a99ff0483e5fbc40c790e8dda.tar forums-212fc277b481440a99ff0483e5fbc40c790e8dda.tar.gz forums-212fc277b481440a99ff0483e5fbc40c790e8dda.tar.bz2 forums-212fc277b481440a99ff0483e5fbc40c790e8dda.tar.xz forums-212fc277b481440a99ff0483e5fbc40c790e8dda.zip |
[ticket/13803] Reordered methods [ci skip]
PHPBB3-13803
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/textreparser/base.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/textreparser/base.php b/phpBB/phpbb/textreparser/base.php index 865b0662f9..85327cdfce 100644 --- a/phpBB/phpbb/textreparser/base.php +++ b/phpBB/phpbb/textreparser/base.php @@ -30,6 +30,11 @@ abstract class base implements reparser_interface abstract protected function get_records($min_id, $max_id); /** + * {@inheritdoc} + */ + abstract protected function save_record(array $record); + + /** * Add fields to given record, if applicable * * The enable_* fields are not always saved to the database. Sometimes we need to guess their @@ -202,9 +207,4 @@ abstract class base implements reparser_interface $this->save_record($record); } } - - /** - * {@inheritdoc} - */ - abstract protected function save_record(array $record); } |