Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAttributeModel()
 {
     return $this->hasOne(Attribute::className(), ['id' => 'attribute_id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAttributes()
 {
     return $this->hasMany(Attribute::className(), ['attribute_type_id' => 'id']);
 }