Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspoerschke committed Nov 25, 2024
1 parent 821cc47 commit 4b761a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Presentation/Component/Property/Value/TextValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TextValue extends Value
/**
* ESCAPED-CHAR as defined in section 3.3.11.
*/
private const ESCAPED_CHARACTERS = [
private const array ESCAPED_CHARACTERS = [
'\\' => '\\\\',
';' => '\\;',
',' => '\\,',
Expand All @@ -32,7 +32,7 @@ class TextValue extends Value
/**
* Non TSAFE-CHAR as described in section 3.3.11.
*/
private const FORBIDDEN_CHARACTERS = [
private const array FORBIDDEN_CHARACTERS = [
"\x00",
"\x01",
"\x02",
Expand Down

0 comments on commit 4b761a8

Please sign in to comment.