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
1 changed files with 1 additions and 1 deletions

View File

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