Skip to content

Commit

Permalink
FIX destroy variables
Browse files Browse the repository at this point in the history
  • Loading branch information
mchh committed Mar 30, 2023
1 parent 5c8581e commit 7f48e8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Classes/Domain/Model/Import.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ public function setTargetWorkspace($targetWorkspace)
*/
public function flush()
{
unset($this->data);
unset($this->parentNodeIdentifier);
unset($this->targetNodeType);
unset($this->targetWorkspace);
$this->data = null;
$this->parentNodeIdentifier = null;
$this->targetNodeType = null;
$this->targetWorkspace = null;
}
}

0 comments on commit 7f48e8c

Please sign in to comment.