_elementClass = \Magento\Framework\App\Config\Element::class; parent::__construct($sourceData); self::$instances[] = $this; } /** * Cleanup objects because of simplexml memory leak * * @return void */ public static function destroy() { if (is_array(self::$instances)) { foreach (self::$instances as $instance) { $instance->_xml = null; } } self::$instances = []; } }