20 lines
383 B
PHP
20 lines
383 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Prevention\Enums;
|
||
|
|
||
|
enum Prevention
|
||
|
{
|
||
|
case EFZ;
|
||
|
case PS;
|
||
|
case MOREPS;
|
||
|
|
||
|
public function text(): string
|
||
|
{
|
||
|
return match ($this) {
|
||
|
static::EFZ => 'erweitertes Führungszeugnis',
|
||
|
static::PS => 'Präventionsschulung Basis Plus',
|
||
|
static::MOREPS => 'Präventionsschulung (Auffrischung)',
|
||
|
};
|
||
|
}
|
||
|
}
|