Skip to content

Commit c10db82

Browse files
committed
Update stubs
1 parent 623943a commit c10db82

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Php8StubsMap.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2725,6 +2725,7 @@ public function __construct(int $phpVersionId)
27252725
'sensitiveparametervalue' => 'stubs/Zend/SensitiveParameterValue.php',
27262726
'zendtestforbiddynamiccall' => 'stubs/ext/zend_test/ZendTestForbidDynamicCall.php',
27272727
'zendtestns\\unlikelycompileerror' => 'stubs/ext/zend_test/ZendTestNS/UnlikelyCompileError.php',
2728+
'zendtestpropertyattribute' => 'stubs/ext/zend_test/ZendTestPropertyAttribute.php',
27282729
));
27292730
$functions = \array_merge($functions, array (
27302731
'curl_upkeep' => 'stubs/ext/curl/curl_upkeep.php',
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
#[\Attribute(Attribute::TARGET_PROPERTY)]
4+
#[\Since('8.2')]
5+
final class ZendTestPropertyAttribute
6+
{
7+
public string $parameter;
8+
public function __construct(string $parameter)
9+
{
10+
}
11+
}

0 commit comments

Comments
 (0)