xrg.es/backend/src/Resource/Functions.php

17 lines
290 B
PHP
Raw Normal View History

2022-01-09 11:08:42 +00:00
<?php
declare(strict_types=1);
namespace App\Resource;
/**
* Implemented PREG functions.
*/
enum Functions: string {
case Match = 'preg_match';
case MatchAll = 'preg_match_all';
case Split = 'preg_split';
case Replace = 'preg_replace';
case Quote = 'preg_quote';
}