/**
  * @param string                  $code
  * @param string                  $class
  * @param string                  $baseControllerName
  * @param ContextManagerInterface $contextManager
  */
 public function __construct($code, $class, $baseControllerName, ContextManagerInterface $contextManager)
 {
     parent::__construct($code, $class, $baseControllerName, $contextManager);
     $this->settings = [];
 }
 /**
  * @param string         $code
  * @param string         $class
  * @param string         $baseControllerName
  * @param ContextManager $contextManager
  */
 public function __construct($code, $class, $baseControllerName, ContextManager $contextManager, SitePool $sitePool)
 {
     parent::__construct($code, $class, $baseControllerName, $contextManager);
     $this->sitePool = $sitePool;
 }