mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-23 03:32:19 +00:00
* feat(redirects): add redirects to sites * chore(style): fixed coding style issues * style: fix php-stan docblocks * style: pint cleanup * tests: fixed redirect test suite * feat: vhosts include additional configs * fix: use exact location matching * - add enums - use queues - use vhost rather than separate conf files - vhost formatter - cleanup * generate docs --------- Co-authored-by: Saeed Vaziry <mr.saeedvaziry@gmail.com>
15 lines
185 B
PHP
15 lines
185 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class RedirectStatus
|
|
{
|
|
const CREATING = 'creating';
|
|
|
|
const READY = 'ready';
|
|
|
|
const DELETING = 'deleting';
|
|
|
|
const FAILED = 'failed';
|
|
}
|