diff options
author | arron <arron@copiadigital.co.uk> | 2013-12-05 18:28:08 +0000 |
---|---|---|
committer | arron <arron@copiadigital.co.uk> | 2013-12-05 18:28:08 +0000 |
commit | e0fd2e51a5546d0d85cf249a6ebf45f9e06e6017 (patch) | |
tree | b7f17446bd2cbdb7dda26d04cbdc65679c8557f2 /library/SSRS/Object/ArrayIterator.php | |
parent | e4ee94dbc8be64f9b53f1a323a314a60d0ac86d3 (diff) | |
download | php-ssrs-e0fd2e51a5546d0d85cf249a6ebf45f9e06e6017.zip php-ssrs-e0fd2e51a5546d0d85cf249a6ebf45f9e06e6017.tar.gz php-ssrs-e0fd2e51a5546d0d85cf249a6ebf45f9e06e6017.tar.bz2 |
Namespaced
Diffstat (limited to 'library/SSRS/Object/ArrayIterator.php')
-rwxr-xr-x | library/SSRS/Object/ArrayIterator.php | 9 |
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 +} |