Jaws_Schema is now abstract
This commit is contained in:
parent
a062835e43
commit
b54d56a9a2
2 changed files with 16 additions and 7 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue