/**
  * {@inheritdoc}
  */
 public function offsetExists($offset)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists');
     if (!$pluginInfo) {
         return parent::offsetExists($offset);
     } else {
         return $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo);
     }
 }