diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-04-23 15:34:18 +0200 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2013-04-23 15:34:18 +0200 |
commit | 3f09de1f24a8eae56f9dd9c3f9169f621d153da1 (patch) | |
tree | 3f7ebe380aa14306f751088f91bd98c6b27e0270 /Model/Declaration.php | |
parent | 06af2a476900cc20112dda69f36e5f27e323c060 (diff) | |
download | Praspel-3f09de1f24a8eae56f9dd9c3f9169f621d153da1.zip Praspel-3f09de1f24a8eae56f9dd9c3f9169f621d153da1.tar.gz Praspel-3f09de1f24a8eae56f9dd9c3f9169f621d153da1.tar.bz2 |
Use ArrayIterator instead of ArrayObject.
Diffstat (limited to 'Model/Declaration.php')
-rw-r--r-- | Model/Declaration.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Model/Declaration.php b/Model/Declaration.php index c7c8248..33c2ef4 100644 --- a/Model/Declaration.php +++ b/Model/Declaration.php @@ -188,11 +188,11 @@ abstract class Declaration * Iterator over local variables. * * @access public - * @return \ArrayObject + * @return \ArrayIterator */ public function getIterator ( ) { - return new \ArrayObject($this->getLocalVariables()); + return new \ArrayIterator($this->getLocalVariables()); } /** |