| 7 bootstrap.inc | public DrupalCacheArray::offsetSet($offset, $value) |
Implements ArrayAccess::offsetSet().
File
- includes/
bootstrap.inc, line 348 - Functions that need to be loaded on every Drupal request.
Code
public function offsetSet($offset, $value) {
$this->storage[$offset] = $value;
}
Login or register to post comments