You are here

public function CourierChannelConverter::convert in Courier 2.x

Same name in this branch
  1. 2.x src/ParamConverter/CourierChannelConverter.php \Drupal\courier\ParamConverter\CourierChannelConverter::convert()
  2. 2.x src/ProxyClass/ParamConverter/CourierChannelConverter.php \Drupal\courier\ProxyClass\ParamConverter\CourierChannelConverter::convert()
Same name and namespace in other branches
  1. 8 src/ProxyClass/ParamConverter/CourierChannelConverter.php \Drupal\courier\ProxyClass\ParamConverter\CourierChannelConverter::convert()

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

src/ProxyClass/ParamConverter/CourierChannelConverter.php, line 76
Contains \Drupal\courier\ProxyClass\ParamConverter\CourierChannelConverter.

Class

CourierChannelConverter
Provides a proxy class for \Drupal\courier\ParamConverter\CourierChannelConverter.

Namespace

Drupal\courier\ProxyClass\ParamConverter

Code

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