frontend and backend
This commit is contained in:
16
backend/src/Resource/Functions.php
Normal file
16
backend/src/Resource/Functions.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?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';
|
||||
}
|
Reference in New Issue
Block a user