/home/techb158/ileadtechnology.com/vendor/symfony/routing
NameSizeModeActions
Annotation/-0755rm
DependencyInjection/-0755rm
Exception/-0755rm
Generator/-0755rm
Loader/-0755rm
Matcher/-0755rm
Alias.php25830644editdlrm
CHANGELOG.md122780644editdlrm
CompiledRoute.php43200644editdlrm
composer.json16490644editdlrm
LICENSE10680644editdlrm
README.md15270644editdlrm
RequestContext.php68720644editdlrm
RequestContextAwareInterface.php5460644editdlrm
Route.php124860644editdlrm
RouteCollection.php109290644editdlrm
RouteCollectionBuilder.php96730644editdlrm
RouteCompiler.php148500644editdlrm
RouteCompilerInterface.php7540644editdlrm
Router.php124910644editdlrm
RouterInterface.php10150644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/symfony/routing/RouterInterface.php (1015B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Routing; use Symfony\Component\Routing\Generator\UrlGeneratorInterface; use Symfony\Component\Routing\Matcher\UrlMatcherInterface; /** * RouterInterface is the interface that all Router classes must implement. * * This interface is the concatenation of UrlMatcherInterface and UrlGeneratorInterface. * * @author Fabien Potencier */ interface RouterInterface extends UrlMatcherInterface, UrlGeneratorInterface { /** * Gets the RouteCollection instance associated with this Router. * * WARNING: This method should never be used at runtime as it is SLOW. * You might use it in a cache warmer though. * * @return RouteCollection */ public function getRouteCollection(); }