add WipeDataLoader

This commit is contained in:
Toni Uebernickel 2012-02-18 02:34:34 +01:00
commit bb9dfbef42
3 changed files with 138 additions and 15 deletions

View file

@ -31,24 +31,11 @@ abstract class AbstractDataLoader extends AbstractDataHandler implements DataLoa
/**
* @var array
*/
private $deletedClasses;
private $deletedClasses = array();
/**
* @var array
*/
private $object_references;
/**
* Default constructor
*
* @param string $rootDir The root directory.
*/
public function __construct($rootDir)
{
parent::__construct($rootDir);
$this->deletedClasses = array();
$this->object_references = array();
}
private $object_references = array();
/**
* Transforms a file containing data in an array.