Contao\User::__construct PHP Метод

__construct() защищенный Метод

Import the database object
protected __construct ( )
    protected function __construct()
    {
        parent::__construct();
        $this->import('Database');
    }

Usage Example

Пример #1
0
 /**
  * Initialize the object
  */
 protected function __construct()
 {
     parent::__construct();
     $this->strIp = \Environment::get('ip');
     $this->strHash = \Input::cookie($this->strCookie);
 }