We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01077e3 commit 1b5eacbCopy full SHA for 1b5eacb
tests/Core/Util/Tokens/TokenNameTest.php
@@ -176,6 +176,19 @@ public static function dataPolyfilledPHPNativeTokens()
176
'tokenCode' => T_ENUM,
177
'expected' => 'T_ENUM',
178
],
179
+
180
+ 'PHP 8.4 native token, polyfilled: T_PUBLIC_SET' => [
181
+ 'tokenCode' => T_PUBLIC_SET,
182
+ 'expected' => 'T_PUBLIC_SET',
183
+ ],
184
+ 'PHP 8.4 native token, polyfilled: T_PROTECTED_SET' => [
185
+ 'tokenCode' => T_PROTECTED_SET,
186
+ 'expected' => 'T_PROTECTED_SET',
187
188
+ 'PHP 8.4 native token, polyfilled: T_PRIVATE_SET' => [
189
+ 'tokenCode' => T_PRIVATE_SET,
190
+ 'expected' => 'T_PRIVATE_SET',
191
192
];
193
194
}//end dataPolyfilledPHPNativeTokens()
0 commit comments