Commit 339a6a32 authored by Sebastian Kummer's avatar Sebastian Kummer

ZP-1352 Initialize in constructor.

Released under the Affero GNU General Public License (AGPL) version 3.
parent 19a47da2
...@@ -33,7 +33,7 @@ class ChangesMemoryWrapper extends HierarchyCache implements IImportChanges, IEx ...@@ -33,7 +33,7 @@ class ChangesMemoryWrapper extends HierarchyCache implements IImportChanges, IEx
private $step; private $step;
private $destinationImporter; private $destinationImporter;
private $exportImporter; private $exportImporter;
private $impersonating = null; private $impersonating;
private $foldersWithoutPermissions; private $foldersWithoutPermissions;
/** /**
...@@ -45,6 +45,7 @@ class ChangesMemoryWrapper extends HierarchyCache implements IImportChanges, IEx ...@@ -45,6 +45,7 @@ class ChangesMemoryWrapper extends HierarchyCache implements IImportChanges, IEx
public function __construct() { public function __construct() {
$this->changes = array(); $this->changes = array();
$this->step = 0; $this->step = 0;
$this->impersonating = null;
$this->foldersWithoutPermissions = array(); $this->foldersWithoutPermissions = array();
parent::__construct(); parent::__construct();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment