|
1
|
<?php |
|
2
|
|
|
3
|
namespace CommerceBird\Admin\Mappings; |
|
4
|
|
|
5
|
if ( ! defined( 'ABSPATH' ) ) { |
|
6
|
exit; |
|
7
|
} |
|
8
|
|
|
9
|
enum ReviewResolution: string { |
|
10
|
case KeepExisting = 'keep_existing'; |
|
11
|
case ReplaceWithPending = 'replace_with_pending'; |
|
12
|
case DiscardBoth = 'discard_both'; |
|
13
|
} |
|
14
|
|