/**
  * __construct
  *
  * @param ListenerOptions $options
  * @return void
  */
 public function __construct(ListenerOptions $options = null)
 {
     parent::__construct($options);
     if ($this->hasCachedConfig()) {
         $this->skipConfig = true;
         $this->setMergedConfig($this->getCachedConfig());
     }
 }