Add missing keyword "new" in class SessionNamespace

This commit is contained in:
Johannes Meyer 2014-03-25 13:24:06 +01:00
parent 440b1cf730
commit 18b825a24b

View File

@ -52,7 +52,7 @@ class SessionNamespace implements IteratorAggregate
*/ */
public function getIterator() public function getIterator()
{ {
return ArrayIterator($this->values); return new ArrayIterator($this->values);
} }
/** /**