1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

[ticket/14925] Set reparser names in service definitions

PHPBB3-14925
This commit is contained in:
Matt Friedman
2016-12-18 01:28:51 -08:00
parent 544c7c4e08
commit b4748a5d1e
7 changed files with 87 additions and 14 deletions

View File

@@ -22,6 +22,20 @@ interface reparser_interface
*/
public function get_max_id();
/**
* Returns the name of the reparser
*
* @return string Name of reparser
*/
public function get_name();
/**
* Sets the name of the reparser
*
* @param string $name The reparser name
*/
public function set_name($name);
/**
* Reparse all records in given range
*