Files
shlink/module/CLI/src/Util/ExitCodes.php
2019-10-05 17:26:10 +02:00

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;
}