// +---------------------------------------------------------------------- namespace crmeb\listens; use app\common\repositories\user\UserExtractRepository; use crmeb\interfaces\ListenerInterface; class CompanyExtractStatusListen implements ListenerInterface { public function handle($data): void { app()->make(UserExtractRepository::class)->updateStatus($data); } }