public function CacheArray::offsetUnset

Implements ArrayAccess::offsetUnset().

File

drupal/core/lib/Drupal/Core/Utility/CacheArray.php, line 153
Definition of CacheArray

Class

CacheArray
Provides a caching wrapper to be used in place of large array structures.

Namespace

Drupal\Core\Utility

Code

public function offsetUnset($offset) {
  unset($this->storage[$offset]);
}