App\Listeners\Forum\NotifySlack::userText PHP Method

userText() private method

private userText ( )
    private function userText()
    {
        $suffix = '';
        if ($this->isFromSupport()) {
            $suffix = ' (Support Team)';
        } elseif ($this->post->post_id !== $this->topic->topic_first_post_id && $this->topic->topic_poster === $this->user->user_id) {
            $suffix = ' (OP)';
        }
        return $this->user->username . $suffix;
    }