From 56e2d3628164e76da8cefabb32fbe6f3e2ac6d5a Mon Sep 17 00:00:00 2001 From: nicobn Date: Mon, 25 Jun 2007 16:54:55 +0000 Subject: [PATCH] Coding standard compliance --- lib/Doctrine/Import/{XML.php => Xml.php} | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) rename lib/Doctrine/Import/{XML.php => Xml.php} (88%) diff --git a/lib/Doctrine/Import/XML.php b/lib/Doctrine/Import/Xml.php similarity index 88% rename from lib/Doctrine/Import/XML.php rename to lib/Doctrine/Import/Xml.php index 70dac508f..5961c5629 100644 --- a/lib/Doctrine/Import/XML.php +++ b/lib/Doctrine/Import/Xml.php @@ -36,27 +36,27 @@ * @version $Revision$ * @author Nicolas BĂ©rard-Nault */ -abstract class Doctrine_Import_XML +class Doctrine_Import_Xml { /** * importObj * * A method to import a XML Schema and translate it into a Doctrine_Record object * - * @param string $Schema The file containing the XML schema - * @param string $Directory The directory where the Doctrine_Record classes will + * @param string $schema The file containing the XML schema + * @param string $directory The directory where the Doctrine_Record classes will * be written * @static */ - public static function importObj($Schema, $Directory) + public function importObj($schema, $directory) { $Builder = new Doctrine_Import_Builder(); - $Builder->setTargetPath($Directory); + $Builder->setTargetPath($directory); - $Arr = self::importArr($Schema); + $Arr = self::importArr($schema); - foreach ($Arr as $Name => $Columns) { - $Builder->buildRecord($Name, $Columns); + foreach ($arr as $name => $columns) { + $Builder->buildRecord($name, $columns); } } @@ -66,7 +66,7 @@ abstract class Doctrine_Import_XML * A method to import a XML Schema and translate it into a property array. * The function returns that property array. * - * @param string $Schema Path to the file containing the XML schema + * @param string $schema Path to the file containing the XML schema * @return array * @static */