You are here

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_test

Code

public function removeVehicle($lot) {
  return NULL;
}