mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-21 09:38:48 +02:00
* N°8604 N°8605 - Add autoloader and dedicated classes for binaries utils * N°8605 - Harden security * N°8604 - Harden security * N°8604 N°8605 - Fixes from code review * N°8604 N°8605 - Improve robustness whether module is in datamodels/2.x or env-xxx folder
19 lines
296 B
PHP
19 lines
296 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2026 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\DBTools\Enum;
|
|
|
|
/**
|
|
* Enum for the exit codes of the bin scripts
|
|
*/
|
|
enum BinExitCode: int
|
|
{
|
|
case SUCCESS = 0;
|
|
case ERROR = -1;
|
|
case FATAL = -2;
|
|
}
|