From 5230f8f8a86fc1ae5d90f8c74ae65c93e197502b Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Thu, 22 Jan 2015 09:14:12 +0100 Subject: Apply namespaces to class inheritances (pt1) --- framework/TEnumerable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/TEnumerable.php') diff --git a/framework/TEnumerable.php b/framework/TEnumerable.php index 45283933..172e7870 100644 --- a/framework/TEnumerable.php +++ b/framework/TEnumerable.php @@ -36,12 +36,12 @@ namespace Prado; * @package Prado * @since 3.0 */ -class TEnumerable implements Iterator +class TEnumerable implements \Iterator { private $_enums=array(); public function __construct() { - $reflection=new ReflectionClass($this); + $reflection=new \ReflectionClass($this); $this->_enums=$reflection->getConstants(); } -- cgit v1.2.3