From d548a43984c88a76e9dacff7eb62e3223de5632c Mon Sep 17 00:00:00 2001 From: nicobn Date: Tue, 26 Jun 2007 00:58:21 +0000 Subject: [PATCH] The method is not static anymore, replaced self by $this. --- lib/Doctrine/Import/Xml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Import/Xml.php b/lib/Doctrine/Import/Xml.php index 5c360ce4a..4b82c78b8 100644 --- a/lib/Doctrine/Import/Xml.php +++ b/lib/Doctrine/Import/Xml.php @@ -52,7 +52,7 @@ class Doctrine_Import_Xml $builder = new Doctrine_Import_Builder(); $builder->setTargetPath($directory); - $arr = self::importArr($schema); + $arr = $this->importArr($schema); foreach ($arr as $name => $columns) { $Builder->buildRecord($name, $columns);