File tree Expand file tree Collapse file tree 3 files changed +468
-0
lines changed
src/Symfony/Component/Routing Expand file tree Collapse file tree 3 files changed +468
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ CHANGELOG
9
9
* Support the ` attribute ` type (alias of ` annotation ` ) in annotation loaders
10
10
* Already encoded slashes are not decoded nor double-encoded anymore when generating URLs (query parameters)
11
11
* Add ` EnumRequirement ` to help generate route requirements from a ` \BackedEnum `
12
+ * Add ` Requirement ` , a collection of universal regular-expression constants to use as route parameter requirements
12
13
13
14
5.3
14
15
---
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ namespace Symfony \Component \Routing \Requirement ;
13
+
14
+ /*
15
+ * A collection of universal regular-expression constants to use as route parameter requirements.
16
+ */
17
+ enum Requirement
18
+ {
19
+ public const ASCII_SLUG = '[A-Za-z0-9]+(?:-[A-Za-z0-9]+)* ' ; // symfony/string AsciiSlugger default implementation
20
+ public const CATCH_ALL = '.+ ' ;
21
+ public const DATE_YMD = '[0-9]{4}-(?:0[1-9]|1[012])-(?:0[1-9]|[12][0-9]|(?<!02-)3[01]) ' ; // YYYY-MM-DD
22
+ public const DIGITS = '[0-9]+ ' ;
23
+ public const UID_BASE32 = '[0-9A-HJKMNP-TV-Z]{26} ' ;
24
+ public const UID_BASE58 = '[1-9A-HJ-NP-Za-km-z]{22} ' ;
25
+ public const UID_RFC4122 = '[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12} ' ;
26
+ public const ULID = '[0-7][0-9A-HJKMNP-TV-Z]{25} ' ;
27
+ public const UUID = '[0-9a-f]{8}-[0-9a-f]{4}-[1-6][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12} ' ;
28
+ public const UUID_V1 = '[0-9a-f]{8}-[0-9a-f]{4}-1[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12} ' ;
29
+ public const UUID_V3 = '[0-9a-f]{8}-[0-9a-f]{4}-3[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12} ' ;
30
+ public const UUID_V4 = '[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12} ' ;
31
+ public const UUID_V5 = '[0-9a-f]{8}-[0-9a-f]{4}-5[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12} ' ;
32
+ public const UUID_V6 = '[0-9a-f]{8}-[0-9a-f]{4}-6[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12} ' ;
33
+ }
You can’t perform that action at this time.
0 commit comments