From a4acccf6f12007304ad09325a27130bbe7dce074 Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 2 Jun 2008 11:45:12 +0000 Subject: [PATCH] fixed some doc blocks --- lib/Doctrine/Entity.php | 2 +- lib/Doctrine/Entity/Exception.php | 38 ++++++++++++++++++++++++++++--- 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/Entity.php b/lib/Doctrine/Entity.php index 1e9074a54..d4f5ce0a3 100644 --- a/lib/Doctrine/Entity.php +++ b/lib/Doctrine/Entity.php @@ -26,7 +26,7 @@ * All record classes should inherit this super class * * @package Doctrine - * @subpackage Record + * @subpackage Entity * @author Konsta Vesterinen * @author Roman Borschel * @license http://www.opensource.org/licenses/lgpl-license.php LGPL diff --git a/lib/Doctrine/Entity/Exception.php b/lib/Doctrine/Entity/Exception.php index 040c78cd5..8798a5a6b 100644 --- a/lib/Doctrine/Entity/Exception.php +++ b/lib/Doctrine/Entity/Exception.php @@ -1,4 +1,38 @@ . + */ + +#namespace Doctrine::ORM; + +/** + * Doctrine_Entity_Exception + * + * @package Doctrine + * @subpackage Entity + * @author Konsta Vesterinen + * @author Roman Borschel + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.phpdoctrine.org + * @since 2.0 + * @version $Revision$ + */ class Doctrine_Entity_Exception extends Doctrine_Exception { public static function unknownField($field) @@ -28,6 +62,4 @@ class Doctrine_Entity_Exception extends Doctrine_Exception { return new self("Invalid field: '$field'."); } -} - -?> \ No newline at end of file +} \ No newline at end of file