From e4999b25052d1ad9400a0f9fd5289a49eea1bddc Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Sun, 25 Jan 2015 20:04:57 +0100 Subject: More namespace changes Changed version to 3.2.99; Attempt at fixing autoloading fixed enough namespaces to have some demos running --- framework/Util/IDynamicMethods.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 framework/Util/IDynamicMethods.php (limited to 'framework/Util/IDynamicMethods.php') diff --git a/framework/Util/IDynamicMethods.php b/framework/Util/IDynamicMethods.php new file mode 100644 index 00000000..1bff167f --- /dev/null +++ b/framework/Util/IDynamicMethods.php @@ -0,0 +1,29 @@ + + * + * Global Events, intra-object events, Class behaviors, expanded behaviors + * @author Brad Anderson + * + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2014 PradoSoft + * @license http://www.pradosoft.com/license/ + * @package Prado\Util + */ + +namespace Prado\Util; + +/** + * IDynamicMethods interface. + * IDynamicMethods marks an object to receive undefined global or dynamic events. + * + * @author Brad Anderson + * @package Prado\Util + * @since 3.2.3 + */ +interface IDynamicMethods +{ + public function __dycall($method,$args); +} \ No newline at end of file -- cgit v1.2.3