You are here

public function Garage::insertVehicle in GraphQL 8.3

Add a vehicle to your garage.

Parameters

array $vehicle: The vehicles properties.

int $lot: The parking lot.

Return value

int The number of the parking lot.

Overrides GarageInterface::insertVehicle

File

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

Class

Garage
Garage implementation.

Namespace

Drupal\graphql_plugin_test

Code

public function insertVehicle(array $vehicle, $lot = NULL) {
  return NULL;
}