public function ShipmentConverter::convert in Ubercart 8.4
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
- shipping/
uc_fulfillment/ src/ ParamConverter/ ShipmentConverter.php, line 17
Class
- ShipmentConverter
- Provides upcasting for a node entity in preview.
Namespace
Drupal\uc_fulfillment\ParamConverterCode
public function convert($value, $definition, $name, array $defaults) {
return Shipment::load($value);
}