. */ namespace Doctrine\ORM\Import\Reader; /** * class Doctrine_Import_Reader * Is responsible of reading a database definitions from a source and costructing a * database schema * * @package Doctrine * @subpackage Import * @link www.phpdoctrine.org * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @since 1.0 * @version $Revision: 3882 $ * @author Konsta Vesterinen */ abstract class AbstractRader { abstract public function read(); }