You are here

function ServiceContainer::reset in X Autoload 7.5

Same name and namespace in other branches
  1. 7.4 lib/DIC/ServiceContainer.php \Drupal\xautoload\DIC\ServiceContainer::reset()

Unset the service for a specific key.

Parameters

string $key:

File

src/DIC/ServiceContainer.php, line 36

Class

ServiceContainer

Namespace

Drupal\xautoload\DIC

Code

function reset($key) {
  $this->services[$key] = NULL;
}