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