コード例 #1
0
ファイル: Storage.php プロジェクト: yii2tech/file-storage
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->ssh = Instance::ensure($this->ssh, Connection::className());
     if ($this->basePath === null) {
         $this->basePath = '/home/' . $this->ssh->username . '/files';
     }
 }
コード例 #2
0
ファイル: Storage.php プロジェクト: yii2tech/file-storage
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     $this->db = Instance::ensure($this->db, Connection::className());
 }