We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 821cc47 commit 4b761a8Copy full SHA for 4b761a8
src/Presentation/Component/Property/Value/TextValue.php
@@ -21,7 +21,7 @@ class TextValue extends Value
21
/**
22
* ESCAPED-CHAR as defined in section 3.3.11.
23
*/
24
- private const ESCAPED_CHARACTERS = [
+ private const array ESCAPED_CHARACTERS = [
25
'\\' => '\\\\',
26
';' => '\\;',
27
',' => '\\,',
@@ -32,7 +32,7 @@ class TextValue extends Value
32
33
* Non TSAFE-CHAR as described in section 3.3.11.
34
35
- private const FORBIDDEN_CHARACTERS = [
+ private const array FORBIDDEN_CHARACTERS = [
36
"\x00",
37
"\x01",
38
"\x02",
0 commit comments