Exemple #1
0
 public function __construct()
 {
     parent::__construct();
     $this->sitesCache = new SitesCache();
 }
Exemple #2
0
 /**
  * Instantiates object, ensures login
  *
  * @return [Instruments_Command] $this
  */
 public function __construct()
 {
     Auth::ensureLogin();
     parent::__construct();
 }
Exemple #3
0
 public function __construct()
 {
     Auth::ensureLogin();
     parent::__construct();
     $this->sites = new Sites();
 }
Exemple #4
0
 /**
  * Instantiates object, sets auth property
  *
  * @return [Auth_Command] $this
  */
 public function __construct()
 {
     parent::__construct();
     $this->auth = new \Terminus\Auth();
 }
Exemple #5
0
 public function __construct()
 {
     parent::__construct();
 }
Exemple #6
0
 /**
  * Show a list of your sites on Pantheon
  * @package Terminus
  * @version 2.0
  */
 public function __construct()
 {
     parent::__construct();
     Auth::loggedIn();
     $this->sites = new Sites();
 }