1
0
mirror of synced 2024-12-13 22:56:04 +03:00

Jaws_Schema is now abstract

This commit is contained in:
nicobn 2007-08-15 16:57:16 +00:00
parent a062835e43
commit b54d56a9a2
2 changed files with 16 additions and 7 deletions

View File

@ -37,16 +37,25 @@
* @author Nicolas Bérard-Nault <nicobn@gmail.com>
* @author Jonathan H. Wage <jonwage@gmail.com>
*/
class Doctrine_Import_Schema
abstract class Doctrine_Import_Schema
{
/**
* Import the schema and return it in an array
*
* @param string $schema
* @access public
*/
abstract function importSchema($schema);
/**
* import
*
* A method to import a 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
* be written
* @param string $schema The file containing the XML schema
* @param string $directory The directory where the Doctrine_Record class will
* be written
* @access public
*/
public function imprt($schema, $directory)
{
@ -61,5 +70,5 @@ class Doctrine_Import_Schema
$builder->buildRecord($options, $columns, array());
}
}
}
}

View File

@ -40,7 +40,7 @@
class Doctrine_Import_Schema_Xml extends Doctrine_Import_Schema
{
/**
* importArr
* importSchema
*
* A method to import a XML Schema and translate it into a property array.
* The function returns that property array.
@ -85,4 +85,4 @@ class Doctrine_Import_Schema_Xml extends Doctrine_Import_Schema
return $tables;
}
}
}