public function CacheArray::offsetSet

Implements ArrayAccess::offsetSet().

File

drupal/core/lib/Drupal/Core/Utility/CacheArray.php, line 146
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 offsetSet($offset, $value) {
  $this->storage[$offset] = $value;
}