1
0
mirror of synced 2025-01-05 16:53:21 +03:00

The method is not static anymore, replaced self by $this.

This commit is contained in:
nicobn 2007-06-26 00:58:21 +00:00
parent 4d5745c7eb
commit d548a43984

View File

@ -52,7 +52,7 @@ class Doctrine_Import_Xml
$builder = new Doctrine_Import_Builder(); $builder = new Doctrine_Import_Builder();
$builder->setTargetPath($directory); $builder->setTargetPath($directory);
$arr = self::importArr($schema); $arr = $this->importArr($schema);
foreach ($arr as $name => $columns) { foreach ($arr as $name => $columns) {
$Builder->buildRecord($name, $columns); $Builder->buildRecord($name, $columns);