Lots of changes, implemented the base usage. Beware of bugs and unfinished states
This commit is contained in:
parent
0c23fdfac2
commit
f20551857b
27 changed files with 3045 additions and 71 deletions
15
src/TamerLib/Enums/TamerMode.php
Normal file
15
src/TamerLib/Enums/TamerMode.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace TamerLib\Enums;
|
||||
|
||||
final class TamerMode
|
||||
{
|
||||
public const CLIENT = 'client';
|
||||
|
||||
public const WORKER = 'worker';
|
||||
|
||||
public const ALL = [
|
||||
self::CLIENT,
|
||||
self::WORKER
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue