Remove deprecated unused each() function

This commit is contained in:
Phil Davis 2021-01-15 09:09:14 +05:45
parent 298bc2d14c
commit b97fccd2c5
No known key found for this signature in database
GPG key ID: 23F482AD80551904

View file

@ -64,12 +64,6 @@ class Collection extends \Flake\Core\FLObject implements \Iterator {
return $oRes; return $oRes;
} }
function &each() {
list($key, $val) = each($this->aCollection);
return $val;
}
function reset() { function reset() {
reset($this->aCollection); reset($this->aCollection);
} }