You are here

public function PluginCollectionArrayAdapter::offsetExists in Extensible BBCode 8.3

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

File

src/PluginCollectionArrayAdapter.php, line 15

Class

PluginCollectionArrayAdapter
Adapt plugin collection methods for array access.

Namespace

Drupal\xbbcode

Code

public function offsetExists($offset) : bool {

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