mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
9 lines
122 B
PHP
9 lines
122 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialReviewerStatus {
|
||
|
|
||
|
const STATUS_ADDED = 'added';
|
||
|
const STATUS_REJECTED = 'rejected';
|
||
|
|
||
|
}
|