Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
web/vendor/symfony-cmf/routing
59
web/vendor/symfony-cmf/routing/PagedRouteProviderInterface.php
vendored
Normal file
59
web/vendor/symfony-cmf/routing/PagedRouteProviderInterface.php
vendored
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony CMF package.
|
||||
*
|
||||
* (c) 2011-2015 Symfony CMF
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
/**
|
||||
* This file is part of the Symfony CMF package.
|
||||
*
|
||||
* (c) 2011-2014 Symfony CMF
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
/*
|
||||
* This file is part of the Symfony CMF package.
|
||||
*
|
||||
* (c) 2011-2015 Symfony CMF
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Cmf\Component\Routing;
|
||||
|
||||
/**
|
||||
* Interface for a provider which allows to retrieve a limited amount of routes.
|
||||
*/
|
||||
interface PagedRouteProviderInterface extends RouteProviderInterface
|
||||
{
|
||||
/**
|
||||
* Find an amount of routes with an offset and possible a limit.
|
||||
*
|
||||
* In case you want to iterate over all routes, you want to avoid to load
|
||||
* all routes at once.
|
||||
*
|
||||
* @param int $offset
|
||||
* The sequence will start with that offset in the list of all routes.
|
||||
* @param int $length [optional]
|
||||
* The sequence will have that many routes in it. If no length is
|
||||
* specified all routes are returned.
|
||||
*
|
||||
* @return \Symfony\Component\Routing\Route[]
|
||||
* Routes keyed by the route name.
|
||||
*/
|
||||
public function getRoutesPaged($offset, $length = null);
|
||||
|
||||
/**
|
||||
* Determines the total amount of routes.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getRoutesCount();
|
||||
}
|
Reference in a new issue