mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
17 lines
224 B
PHP
17 lines
224 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use App\Traits\Enum;
|
|
|
|
final class LoadBalancerMethod
|
|
{
|
|
use Enum;
|
|
|
|
const ROUND_ROBIN = 'round-robin';
|
|
|
|
const LEAST_CONNECTIONS = 'least-connections';
|
|
|
|
const IP_HASH = 'ip-hash';
|
|
}
|