Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEventsSets()
 {
     return $this->hasMany(EventsSet::className(), ['sport_id' => 'id'])->inverseOf('sport');
 }
Esempio n. 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEventsSet()
 {
     return $this->hasOne(EventsSet::className(), ['id' => 'events_set_id']);
 }