1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

[ticket/13987] Add --dry-run option to reparser CLI

PHPBB3-13987
This commit is contained in:
JoshyPHP
2015-07-06 01:43:43 +02:00
parent ca5d4fd310
commit 7ccb638912
7 changed files with 96 additions and 44 deletions

View File

@@ -25,8 +25,9 @@ interface reparser_interface
/**
* Reparse all records in given range
*
* @param integer $min_id Lower bound
* @param integer $max_id Upper bound
* @param integer $min_id Lower bound
* @param integer $max_id Upper bound
* @param integer $dry_run If TRUE, do not save the changes
*/
public function reparse_range($min_id, $max_id);
public function reparse_range($min_id, $max_id, $dry_run = false);
}