20 lines
251 B
PHP
20 lines
251 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use BenSampo\Enum\Enum;
|
|
|
|
/**
|
|
* @method static static kg()
|
|
* @method static static l()
|
|
* @method static static db()
|
|
*/
|
|
class BasicUnitEnum extends Enum
|
|
{
|
|
const kg = 'kg';
|
|
|
|
const l = 'l';
|
|
|
|
const db = 'db';
|
|
}
|