/**
  * @return \RainLoop\Plugins\Manager
  */
 public function Plugins()
 {
     if (null === $this->oPlugins) {
         $this->oPlugins = new \RainLoop\Plugins\Manager($this);
         $this->oPlugins->SetLogger($this->Logger());
     }
     return $this->oPlugins;
 }