public function get($key, $default = null)
 {
     if (false === $this->has($key)) {
         throw CodexException::processorNotFound(': ' . (string) $key, $this->currentDocument);
     }
     return parent::get($key, $default);
 }
 /**
  * get method
  *
  * @param mixed $name
  * @param null  $default
  *
  * @return PluginPresenter
  */
 public function get($name, $default = null)
 {
     return parent::get($name, $default);
 }