File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
stubs/ext/zend_test/ZendTestNS Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -2718,6 +2718,7 @@ public function __construct(int $phpVersionId)
2718
2718
'random \\cryptosafeengine ' => 'stubs/ext/random/Random/CryptoSafeEngine.php ' ,
2719
2719
'random \\randomizer ' => 'stubs/ext/random/Random/Randomizer.php ' ,
2720
2720
'zendtestforbiddynamiccall ' => 'stubs/ext/zend_test/ZendTestForbidDynamicCall.php ' ,
2721
+ 'zendtestns \\unlikelycompileerror ' => 'stubs/ext/zend_test/ZendTestNS/UnlikelyCompileError.php ' ,
2721
2722
'allowdynamicproperties ' => 'stubs/Zend/AllowDynamicProperties.php ' ,
2722
2723
'sensitiveparameter ' => 'stubs/Zend/SensitiveParameter.php ' ,
2723
2724
'sensitiveparametervalue ' => 'stubs/Zend/SensitiveParameterValue.php ' ,
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace ZendTestNS ;
4
+
5
+ #[\Since('8.2 ' )]
6
+ class UnlikelyCompileError
7
+ {
8
+ /* This method signature would create a compile error due to the string
9
+ * "ZendTestNS\UnlikelyCompileError" in the generated macro call */
10
+ public function method () : ?UnlikelyCompileError
11
+ {
12
+ }
13
+ }
You can’t perform that action at this time.
0 commit comments