Files
shlink/module/CLI/src/Util/ExitCode.php
2024-12-02 09:16:15 +01:00

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