comments added
This commit is contained in:
parent
3c699f66a9
commit
badc58d746
@ -21,11 +21,24 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Doctrine_Overloadable
|
* Doctrine_Overloadable
|
||||||
|
* a very generic overloading interface
|
||||||
*
|
*
|
||||||
* @package Doctrine ORM
|
* @package Doctrine
|
||||||
* @url www.phpdoctrine.com
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
* @license LGPL
|
* @category Object Relational Mapping
|
||||||
|
* @link www.phpdoctrine.com
|
||||||
|
* @since 1.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
||||||
*/
|
*/
|
||||||
interface Doctrine_Overloadable {
|
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);
|
public function __call($m, $a);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user