<?php

namespace DummyNamespace;

use Konekt\Enum\Enum;

class DummyClass extends Enum
{
    const __DEFAULT = self::OPTION_ONE;
    // const __default = self::OPTION_ONE; // default for v2

    const OPTION_ONE = 'option_one';
    const OPTION_TWO = 'option_two';

    public static $labels = [];

    protected static function boot()
    {
        static::$labels = [
            self::OPTION_ONE => __('Option #1'),
            self::OPTION_TWO => __('Option #2'),
        ];
    }
}
