N°4756 - Ease extensibility for CRUD operations : Unit tests

This commit is contained in:
Eric Espie
2023-01-09 13:59:55 +01:00
parent 083d19c688
commit cf4616d9a1
5 changed files with 90 additions and 242 deletions

View File

@@ -254,7 +254,9 @@ class EventService
*/
public static function UnRegisterAll()
{
self::$aEventListeners = array();
self::$aEventListeners = [];
self::$aEventDescriptions = [];
self::$iEventIdCounter = 0;
EventHelper::Trace("Unregistered all events");
}