actor->name ?: $this->actor->username ?: 'Someone'; return [ 'type' => 'user_followed', 'actor_id' => (int) $this->actor->id, 'actor_name' => $this->actor->name, 'actor_username' => $this->actor->username, 'message' => $label . ' started following you', 'url' => $this->actor->username ? '/@' . $this->actor->username : null, ]; } }