Refactored \Tamer to \TamerLib

This commit is contained in:
Netkas 2023-02-05 17:27:32 -05:00
parent 1b8d2fb40a
commit 7eea383ce9
25 changed files with 81 additions and 81 deletions

View file

@ -0,0 +1,16 @@
<?php
namespace TamerLib\Abstracts\ExitCodes;
class WorkerExitCodes
{
const GracefulShutdown = 0;
const Exception = 1;
const UnsupervisedWorker = 2;
const ProtocolUnavailable = 3;
const ServerConnectionFailed = 4;
}