You are here

public function ContactFormRevisionsConverter::convert in Config Entity Revisions 8.2

Converts path variables to their corresponding objects.

Parameters

mixed $value: The raw value.

mixed $definition: The parameter definition provided in the route options.

string $name: The name of the parameter.

array $defaults: The route defaults array.

Return value

mixed|null The converted parameter value.

Overrides ParamConverterInterface::convert

File

modules/contact_form_revisions/src/ProxyClass/ParamConverter/ContactFormRevisionsConverter.php, line 73

Class

ContactFormRevisionsConverter
Provides a proxy class for \Drupal\contact_form_revisions\ParamConverter\ContactFormRevisionsConverter.

Namespace

Drupal\contact_form_revisions\ProxyClass\ParamConverter

Code

public function convert($value, $definition, $name, array $defaults) {
  return $this
    ->lazyLoadItself()
    ->convert($value, $definition, $name, $defaults);
}