From 212fc277b481440a99ff0483e5fbc40c790e8dda Mon Sep 17 00:00:00 2001 From: JoshyPHP Date: Wed, 6 May 2015 13:01:09 +0200 Subject: [PATCH] [ticket/13803] Reordered methods [ci skip] PHPBB3-13803 --- phpBB/phpbb/textreparser/base.php | 10 +++++----- 1 file 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 @@ -29,6 +29,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 * @@ -202,9 +207,4 @@ abstract class base implements reparser_interface $this->save_record($record); } } - - /** - * {@inheritdoc} - */ - abstract protected function save_record(array $record); }