$user = User::query()->where('id', '!=', $this->getAdmin()->id)
->whereNull('system_name')
->first();
- $entityChain = $this->createEntityChainBelongingToUser($user);
+ $entityChain = $this->entities->createChainBelongingToUser($user);
/** @var User $newOwner */
$newOwner = User::query()->where('id', '!=', $user->id)->first();