Example #1
0
 public function getAuthSettings()
 {
     if ($this->getProxy()->getAuthSettings()) {
         return parent::getAuthSettings();
     }
     return null;
 }
Example #2
0
 public function getAuthSettings()
 {
     $proxy = $this->getProxy();
     if ($proxy && $proxy->getAuthSettings()) {
         return parent::getAuthSettings();
     }
     return null;
 }
Example #3
0
 public function __construct()
 {
     $this->engine = static::getEngine($this->engineId);
     if ($this->engine) {
         $this->engineRegistered = true;
         parent::__construct();
     }
 }