Skip to content

Commit 4b761a8

Browse files
Fix tests
1 parent 821cc47 commit 4b761a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Presentation/Component/Property/Value/TextValue.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class TextValue extends Value
2121
/**
2222
* ESCAPED-CHAR as defined in section 3.3.11.
2323
*/
24-
private const ESCAPED_CHARACTERS = [
24+
private const array ESCAPED_CHARACTERS = [
2525
'\\' => '\\\\',
2626
';' => '\\;',
2727
',' => '\\,',
@@ -32,7 +32,7 @@ class TextValue extends Value
3232
/**
3333
* Non TSAFE-CHAR as described in section 3.3.11.
3434
*/
35-
private const FORBIDDEN_CHARACTERS = [
35+
private const array FORBIDDEN_CHARACTERS = [
3636
"\x00",
3737
"\x01",
3838
"\x02",

0 commit comments

Comments
 (0)