package and depencies

This commit is contained in:
RafficMohammed
2023-01-08 02:57:24 +05:30
parent d5332eb421
commit 1d54b8bc7f
4309 changed files with 193331 additions and 172289 deletions

View File

@@ -31,11 +31,9 @@ interface UrlMatcherInterface extends RequestContextAwareInterface
*
* @param string $pathinfo The path info to be parsed (raw format, i.e. not urldecoded)
*
* @return array
*
* @throws NoConfigurationException If no routing configuration could be found
* @throws ResourceNotFoundException If the resource could not be found
* @throws MethodNotAllowedException If the resource was found but the request method is not allowed
*/
public function match(string $pathinfo);
public function match(string $pathinfo): array;
}