InfluxOW/laravel_ddd_ecommerce

View on GitHub
app/Components/Attributable/Enums/Translation/AttributeValueTranslationKey.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Components\Attributable\Enums\Translation;

enum AttributeValueTranslationKey: string
{
    case ATTRIBUTE_TITLE = 'attribute.title';
    case READABLE_VALUE = 'readable_value';
    case ATTRIBUTE = 'attribute_id';

    case VALUE_STRING = 'value_string';
    case VALUE_BOOLEAN = 'value_boolean';
    case VALUE_INTEGER = 'value_integer';
    case VALUE_FLOAT = 'value_float';
}