mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 01:41:36 +00:00
15 lines
172 B
PHP
15 lines
172 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class SiteFeature
|
|
{
|
|
const DEPLOYMENT = 'deployment';
|
|
|
|
const ENV = 'env';
|
|
|
|
const SSL = 'ssl';
|
|
|
|
const QUEUES = 'queues';
|
|
}
|