mirror of
https://github.com/PGYER/codefever.git
synced 2026-05-08 06:28:37 +08:00
10 lines
148 B
PHP
Executable File
10 lines
148 B
PHP
Executable File
<?php
|
|
namespace service\Constant;
|
|
|
|
class MergeRequestStatus {
|
|
const NULL = 0;
|
|
const OPEN = 1;
|
|
const MERGED = 2;
|
|
const CLOSED = 3;
|
|
}
|