Skip to content

Commit 64e8d2e

Browse files
committed
php-cs-fixer
1 parent da9f764 commit 64e8d2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Translator/src/Intl/IntlMessageParser.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ private function parseLiteral(int $nestingLevel, string $parentArgType): array
164164
];
165165
}
166166

167-
private function tryParseLeftAngleBracket(): string|null
167+
private function tryParseLeftAngleBracket(): ?string
168168
{
169169
if (
170170
!$this->isEOF()
@@ -186,7 +186,7 @@ private function tryParseLeftAngleBracket(): string|null
186186
* a character that requires quoting (that is, "only where needed"), and works the same in
187187
* nested messages as on the top level of the pattern. The new behavior is otherwise compatible.
188188
*/
189-
private function tryParseQuote(string $parentArgType): string|null
189+
private function tryParseQuote(string $parentArgType): ?string
190190
{
191191
if ($this->isEOF() || 39 !== $this->char() /* `'` */) {
192192
return null;
@@ -247,7 +247,7 @@ private function tryParseQuote(string $parentArgType): string|null
247247
private function tryParseUnquoted(
248248
int $nestingLevel,
249249
string $parentArgType,
250-
): string|null {
250+
): ?string {
251251
if ($this->isEOF()) {
252252
return null;
253253
}

0 commit comments

Comments
 (0)