Skip to content

Commit 94800a7

Browse files
freddenjrfnl
andauthored
Update tests/EndToEndPhpt/Util/Tokens/polyfillTokenizerConstants-skip-names.phpt
Co-authored-by: Juliette <[email protected]>
1 parent d39279c commit 94800a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/EndToEndPhpt/Util/Tokens/polyfillTokenizerConstants-skip-names.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ if (version_compare(PHP_VERSION, "8.4", ">=")) {
88
--FILE--
99
<?php
1010
// Using T_STRING as a value because that would be a collision (and throw) if the constant name looked like a tokenizer constant.
11-
define('T_', T_STRING); // Too short
12-
define('ONE', T_STRING); // First character is not 'T'
13-
define('TWO', T_STRING); // Second character is not '_'
11+
define('T_', T_STRING); // Too short.
12+
define('ONE', T_STRING); // First character is not 'T'.
13+
define('TWO', T_STRING); // Second character is not '_'.
1414
require('src/Util/Tokens.php');
1515
echo 'No conflicts', PHP_EOL;
1616
--EXPECT--

0 commit comments

Comments
 (0)