mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
13 lines
213 B
PHP
13 lines
213 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\CLI\Util;
|
|
|
|
final class ExitCode
|
|
{
|
|
public const int EXIT_SUCCESS = 0;
|
|
public const int EXIT_FAILURE = -1;
|
|
public const int EXIT_WARNING = 1;
|
|
}
|