mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 15:02:34 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
11 lines
117 B
PHP
11 lines
117 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class PHPIniType
|
|
{
|
|
const string CLI = 'cli';
|
|
|
|
const string FPM = 'fpm';
|
|
}
|