mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
17 lines
208 B
PHP
17 lines
208 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class SiteFeature
|
|
{
|
|
const DEPLOYMENT = 'deployment';
|
|
|
|
const ENV = 'env';
|
|
|
|
const SSL = 'ssl';
|
|
|
|
const WORKERS = 'workers';
|
|
|
|
const COMMANDS = 'commands';
|
|
}
|