public function get($key, $default = null)
 {
     if (false === $this->has($key)) {
         throw CodexException::processorNotFound(': ' . (string) $key, $this->currentDocument);
     }
     return parent::get($key, $default);
 }
Example #2
0
 /**
  * all method
  *
  * @return PluginPresenter[]
  */
 public function all()
 {
     return parent::all();
 }