Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Ndrstmr\Icap;
6
7/**
8 * Result of preview handling during RESPMOD with preview mode.
9 */
10enum PreviewDecision: string
11{
12    case CONTINUE_SENDING = 'continue';
13    case ABORT_CLEAN = 'abort_clean';
14    case ABORT_INFECTED = 'abort_infected';
15}