mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
17 lines
219 B
PHP
17 lines
219 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class SiteType
|
|
{
|
|
const PHP = 'php';
|
|
|
|
const PHP_BLANK = 'php-blank';
|
|
|
|
const LARAVEL = 'laravel';
|
|
|
|
const WORDPRESS = 'wordpress';
|
|
|
|
const PHPMYADMIN = 'phpmyadmin';
|
|
}
|