Issue #2645164 by kekkis, quietone, heddn, Lars Toomre: Fix use of $sourceValues and $destinationValues local variables

8.3.x
Alex Pott 2016-10-27 21:47:13 -07:00
parent 4471e3087d
commit 6695406980
1 changed files with 0 additions and 16 deletions

View File

@ -66,13 +66,6 @@ class MigrateExecutable implements MigrateExecutableInterface {
*/ */
protected $counts = array(); protected $counts = array();
/**
* The object currently being constructed.
*
* @var \stdClass
*/
protected $destinationValues;
/** /**
* The source. * The source.
* *
@ -80,13 +73,6 @@ class MigrateExecutable implements MigrateExecutableInterface {
*/ */
protected $source; protected $source;
/**
* The current data row retrieved from the source.
*
* @var \stdClass
*/
protected $sourceValues;
/** /**
* The event dispatcher. * The event dispatcher.
* *
@ -277,8 +263,6 @@ class MigrateExecutable implements MigrateExecutableInterface {
} }
} }
// Reset row properties.
unset($sourceValues, $destinationValues);
$this->sourceRowStatus = MigrateIdMapInterface::STATUS_IMPORTED; $this->sourceRowStatus = MigrateIdMapInterface::STATUS_IMPORTED;
// Check for memory exhaustion. // Check for memory exhaustion.