You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 4, 2024. It is now read-only.
My base classes all have a broken findModel method. I am getting
public function findModel($id)
{
$model = \::findOne($id);
if ($model !== null) {
return $model;
}
throw new \yii\web\NotFoundHttpException("Object not found: $id");
}
where I would be expecting say \common\models\Company::findOne($id).
I assume some config isn't set right, but I'm blowed if i can see how.