1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/13489] Disable the event dispatcher in the migrator

PHPBB3-13489
This commit is contained in:
Tristan Darricau
2015-01-14 11:04:42 +01:00
parent a415a4ec2b
commit c99ed64473
3 changed files with 91 additions and 6 deletions

View File

@@ -37,4 +37,14 @@ interface dispatcher_interface extends \Symfony\Component\EventDispatcher\EventD
* @return mixed
*/
public function trigger_event($eventName, $data = array());
/**
* Disable the event dispatcher.
*/
public function disable();
/**
* Enable the event dispatcher.
*/
public function enable();
}