public function Garage::removeVehicle in GraphQL 8.3
Remove a vehicle from the garage.
Parameters
int $lot: The parking lot.
Return value
array The removed vehicle.
Overrides GarageInterface::removeVehicle
File
- tests/
modules/ graphql_plugin_test/ src/ Garage.php, line 43
Class
- Garage
- Garage implementation.
Namespace
Drupal\graphql_plugin_testCode
public function removeVehicle($lot) {
return NULL;
}