summaryrefslogtreecommitdiff
path: root/framework/TComponent.php
diff options
context:
space:
mode:
authorgodzilla80@gmx.net <>2011-02-26 14:18:50 +0000
committergodzilla80@gmx.net <>2011-02-26 14:18:50 +0000
commit88a3ef07397fbf679e0b70f9c73c4d4b806b0e41 (patch)
tree96d126f2f81d0f433d140894f381d09a3d528df3 /framework/TComponent.php
parent09e47185124cc4674fac4656959d57c92537d355 (diff)
CHG: Remove TReflectionClass and all references since equals ReflectionClass
Diffstat (limited to 'framework/TComponent.php')
-rw-r--r--framework/TComponent.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/TComponent.php b/framework/TComponent.php
index 9b5331ef..9f51a4ef 100644
--- a/framework/TComponent.php
+++ b/framework/TComponent.php
@@ -90,8 +90,8 @@ class TComponent
*/
public function __construct() {
}
-
-
+
+
/**
* Returns a property value or an event handler list by property or event name.
* Do not call this method. This is a PHP magic method that we override
@@ -365,7 +365,7 @@ class TComponent
$method=substr($handler,$pos+1);
if(method_exists($object,$method))
$object->$method($sender,$param);
-
+
else
throw new TInvalidDataValueException('component_eventhandler_invalid',get_class($this),$name,$handler);
}
@@ -466,7 +466,7 @@ class TComponent
public function addParsedObject($object)
{
}
-
+
/**
* Returns the named behavior object.
* The name 'asa' stands for 'as a'.
@@ -893,7 +893,7 @@ class TComponentReflection extends TComponent
private function reflect()
{
- $class=new TReflectionClass($this->_className);
+ $class=new ReflectionClass($this->_className);
$properties=array();
$events=array();
$methods=array();