You are here

public function Garage::getVehicle in GraphQL 8.3

Get vehicle by parking lot.

Parameters

int $lot: The parking lot.

Return value

array The vehicle definition.

Overrides GarageInterface::getVehicle

File

tests/modules/graphql_plugin_test/src/Garage.php, line 36

Class

Garage
Garage implementation.

Namespace

Drupal\graphql_plugin_test

Code

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