mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 01:36:57 +02:00
[ticket/13987] Replaced optional parameter with explicit API
Added disable_save() and enable_save() to toggle a dry run PHPBB3-13987
This commit is contained in:
@@ -25,9 +25,8 @@ interface reparser_interface
|
||||
/**
|
||||
* Reparse all records in given range
|
||||
*
|
||||
* @param integer $min_id Lower bound
|
||||
* @param integer $max_id Upper bound
|
||||
* @param integer $dry_run If TRUE, do not save the changes
|
||||
* @param integer $min_id Lower bound
|
||||
* @param integer $max_id Upper bound
|
||||
*/
|
||||
public function reparse_range($min_id, $max_id, $dry_run = false);
|
||||
public function reparse_range($min_id, $max_id);
|
||||
}
|
||||
|
Reference in New Issue
Block a user