From 4f361df6c3c0aa922149a1ca69857dcf262e05df Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 16 Nov 2006 18:45:51 +0000 Subject: [PATCH] updated doc block --- lib/Doctrine/Import/Builder.php | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/lib/Doctrine/Import/Builder.php b/lib/Doctrine/Import/Builder.php index 419b221a1..49ec2f26e 100644 --- a/lib/Doctrine/Import/Builder.php +++ b/lib/Doctrine/Import/Builder.php @@ -20,14 +20,10 @@ */ /** - * @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. + * Doctrine_Import_Builder + * Import builder is responsible of building Doctrine ActiveRecord classes + * based on a database schema. + * * @package Doctrine * @category Object Relational Mapping * @link www.phpdoctrine.com @@ -35,6 +31,7 @@ * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen + * @author Jukka Hassinen */ class Doctrine_Import_Builder { @@ -113,13 +110,13 @@ class Doctrine_Import_Builder { if($column['notnull']) { $a[] = '\'notnull\' => true'; } - if($column['primary']) { + if($column['primary']) { $a[] = '\'primary\' => true'; } - if($column['autoinc']) { + if($column['autoinc']) { $a[] = '\'autoincrement\' => true'; } - if($column['unique']) { + if($column['unique']) { $a[] = '\'unique\' => true'; }