comparison vendor/symfony/routing/Generator/UrlGeneratorInterface.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
80 * @throws RouteNotFoundException If the named route doesn't exist 80 * @throws RouteNotFoundException If the named route doesn't exist
81 * @throws MissingMandatoryParametersException When some parameters are missing that are mandatory for the route 81 * @throws MissingMandatoryParametersException When some parameters are missing that are mandatory for the route
82 * @throws InvalidParameterException When a parameter value for a placeholder is not correct because 82 * @throws InvalidParameterException When a parameter value for a placeholder is not correct because
83 * it does not match the requirement 83 * it does not match the requirement
84 */ 84 */
85 public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH); 85 public function generate($name, $parameters = [], $referenceType = self::ABSOLUTE_PATH);
86 } 86 }