From badc58d746ad3c0dc5971b30f347686405a3363c Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 8 Feb 2007 22:11:18 +0000 Subject: [PATCH] comments added --- lib/Doctrine/Overloadable.php | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/Overloadable.php b/lib/Doctrine/Overloadable.php index 53bfff61f..430f68a1b 100644 --- a/lib/Doctrine/Overloadable.php +++ b/lib/Doctrine/Overloadable.php @@ -21,11 +21,24 @@ /** * Doctrine_Overloadable + * a very generic overloading interface * - * @package Doctrine ORM - * @url www.phpdoctrine.com - * @license LGPL + * @package Doctrine + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + * @author Konsta Vesterinen */ interface Doctrine_Overloadable { + /** + * __call + * method overloader + * + * @param string $m the name of the method + * @param array $a method arguments + * @return mixed anything + */ public function __call($m, $a); }