public function UrlGenerator::isStrictRequirements

Returns whether to throw an exception on incorrect parameters. Null means the requirements check is deactivated completely.

Return value

Boolean|null

Overrides ConfigurableRequirementsInterface::isStrictRequirements

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Generator/UrlGenerator.php, line 123

Class

UrlGenerator
UrlGenerator can generate a URL or a path for any route in the RouteCollection based on the passed parameters.

Namespace

Symfony\Component\Routing\Generator

Code

public function isStrictRequirements() {
  return $this->strictRequirements;
}