App\Models\Multiplayer\Event::getDetailAttribute PHP Method

getDetailAttribute() public method

public getDetailAttribute ( )
    public function getDetailAttribute()
    {
        $value = $this->text;
        if (in_array($value, self::EVENT_TYPES, true)) {
            return ['type' => array_search_null($value, self::EVENT_TYPES)];
        } else {
            return ['type' => 'other', 'text' => $value];
        }
    }