. */ namespace App\Entity\LabelSystem; enum LabelProcessMode: string { /** Use placeholders like [[PLACEHOLDER]] which gets replaced with content */ case PLACEHOLDER = 'html'; /** Interpret the given lines as twig template */ case TWIG = 'twig'; }