You are here

public function PluginCollectionArrayAdapter::offsetSet in Extensible BBCode 8.3

Same name and namespace in other branches
  1. 4.0.x src/PluginCollectionArrayAdapter.php \Drupal\xbbcode\PluginCollectionArrayAdapter::offsetSet()

File

src/PluginCollectionArrayAdapter.php, line 31

Class

PluginCollectionArrayAdapter
Adapt plugin collection methods for array access.

Namespace

Drupal\xbbcode

Code

public function offsetSet($offset, $value) {

  /** @var \Drupal\xbbcode\PluginCollectionInterface $this */
  return $this
    ->set($offset, $value);
}