. */ /** * @package Doctrine * @url http://www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @author Jukka Hassinen * @version $Id$ */ /** * class Doctrine_Import_Builder * Is responsible of building Doctrine structure based on a database schema. */ abstract class Doctrine_Import_Builder { /** Aggregations: */ /** Compositions: */ /*** Attributes: ***/ /** * * @param Doctrine_Schema schema * @return * @abstract * @access public */ abstract public function build(Doctrine_Schema $schema ); } // end of Doctrine_Import_Builder