<?php

namespace App\Enums;

enum Placement: string
{
    case BEFORE = 'before';
    case AFTER = 'after';
}