comparison vendor/symfony/routing/Matcher/UrlMatcherInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
9 * file that was distributed with this source code. 9 * file that was distributed with this source code.
10 */ 10 */
11 11
12 namespace Symfony\Component\Routing\Matcher; 12 namespace Symfony\Component\Routing\Matcher;
13 13
14 use Symfony\Component\Routing\Exception\NoConfigurationException;
14 use Symfony\Component\Routing\RequestContextAwareInterface; 15 use Symfony\Component\Routing\RequestContextAwareInterface;
15 use Symfony\Component\Routing\Exception\ResourceNotFoundException; 16 use Symfony\Component\Routing\Exception\ResourceNotFoundException;
16 use Symfony\Component\Routing\Exception\MethodNotAllowedException; 17 use Symfony\Component\Routing\Exception\MethodNotAllowedException;
17 18
18 /** 19 /**
30 * 31 *
31 * @param string $pathinfo The path info to be parsed (raw format, i.e. not urldecoded) 32 * @param string $pathinfo The path info to be parsed (raw format, i.e. not urldecoded)
32 * 33 *
33 * @return array An array of parameters 34 * @return array An array of parameters
34 * 35 *
36 * @throws NoConfigurationException If no routing configuration could be found
35 * @throws ResourceNotFoundException If the resource could not be found 37 * @throws ResourceNotFoundException If the resource could not be found
36 * @throws MethodNotAllowedException If the resource was found but the request method is not allowed 38 * @throws MethodNotAllowedException If the resource was found but the request method is not allowed
37 */ 39 */
38 public function match($pathinfo); 40 public function match($pathinfo);
39 } 41 }