OmgDef / yii2-multilingual-behavior

Yii2 port of the yii-multilingual-behavior.
146 stars 60 forks source link

Calling unknown method: omgdef\multilingual\MultilingualQuery::delete() #81

Open neoacevedo opened 5 years ago

neoacevedo commented 5 years ago

This happens if I try to delete a model. The AR in its behaviors is configured as in the example and the find method is like the following:

/**
 * {@inheritdoc}
 */
 public static function find()
 {
     $q = new \omgdef\multilingual\MultilingualQuery(get_called_class());
     return $q;
 }