__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace FastRoute;
interface Dispatcher
{
const NOT_FOUND = 0;
const FOUND = 1;
const METHOD_NOT_ALLOWED = 2;
/**
* Dispatches against the provided HTTP method verb and URI.
*
* Returns array with one of the following formats:
*
* [self::NOT_FOUND]
* [self::METHOD_NOT_ALLOWED, ['GET', 'OTHER_ALLOWED_METHODS']]
* [self::FOUND, $handler, ['varName' => 'value', ...]]
*
* @param string $httpMethod
* @param string $uri
*
* @return array
*/
public function dispatch($httpMethod, $uri);
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| DataGenerator | Folder | 0755 |
|
|
| Dispatcher | Folder | 0755 |
|
|
| RouteParser | Folder | 0755 |
|
|
| BadRouteException.php | File | 81 B | 0644 |
|
| DataGenerator.php | File | 682 B | 0644 |
|
| Dispatcher.php | File | 594 B | 0644 |
|
| Route.php | File | 921 B | 0644 |
|
| RouteCollector.php | File | 3.77 KB | 0644 |
|
| RouteParser.php | File | 1.01 KB | 0644 |
|
| autoload.php | File | 1.91 KB | 0644 |
|
| functions.php | File | 2.49 KB | 0644 |
|