コード例 #1
0
ファイル: UsersStats.php プロジェクト: aversilov/prexr
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCurrency()
 {
     return $this->hasOne(Currencies::className(), ['id' => 'currency_id']);
 }
コード例 #2
0
ファイル: Country.php プロジェクト: soanni/stocks_mvc
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCurrencies()
 {
     return $this->hasMany(Currencies::className(), ['countryid' => 'countryid']);
 }