public function PagedRouteCollection::rewind in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony-cmf/routing/PagedRouteCollection.php \Symfony\Cmf\Component\Routing\PagedRouteCollection::rewind()
File
- vendor/
symfony-cmf/ routing/ PagedRouteCollection.php, line 110
Class
- PagedRouteCollection
- Provides a route collection which avoids having all routes in memory.
Namespace
Symfony\Cmf\Component\RoutingCode
public function rewind() {
$this->current = 0;
$this->currentRoutes = NULL;
$this
->loadNextElements($this->current);
}