Files
sugar-cube-client/src/models/StatusState.php
Cédric Belin 76e8cfa0a4 Code formatting
2019-04-15 19:22:15 +02:00

25 lines
541 B
PHP

<?php declare(strict_types=1);
namespace Gitea\Models;
use Enum\{EnumTrait};
/** Defines the state of a Gitea status. */
final class StatusState {
use EnumTrait;
/** @var string The status is an error. */
const ERROR = 'error';
/** @var string The status is a failure. */
const FAILURE = 'failure';
/** @var string The status is pending. */
const PENDING = 'pending';
/** @var string The status is a success. */
const SUCCESS = 'success';
/** @var string The status is a warning. */
const WARNING = 'warning';
}