1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-25 20:45:16 +02:00

[ticket/13803] Reordered methods [ci skip]

PHPBB3-13803
This commit is contained in:
JoshyPHP
2015-05-06 13:01:09 +02:00
parent d42b2fe795
commit 212fc277b4

View File

@ -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);
}