summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Object/ArrayIterator.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/SSRS/Object/ArrayIterator.php')
-rwxr-xr-xlibrary/SSRS/Object/ArrayIterator.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/library/SSRS/Object/ArrayIterator.php b/library/SSRS/Object/ArrayIterator.php
index ad53ad5..8171642 100755
--- a/library/SSRS/Object/ArrayIterator.php
+++ b/library/SSRS/Object/ArrayIterator.php
@@ -1,16 +1,13 @@
<?php
-/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
+namespace SSRS\Object;
/**
* Description of Iterator
*
* @author andrew
*/
-class SSRS_Object_ArrayIterator extends SSRS_Object_Abstract implements Iterator {
+class ArrayIterator extends ObjectAbstract implements \Iterator {
public $iteratorKey = 'Array';
@@ -38,4 +35,4 @@ class SSRS_Object_ArrayIterator extends SSRS_Object_Abstract implements Iterator
return reset($this->data[$this->iteratorKey]);
}
-} \ No newline at end of file
+}