diff --git a/Php8StubsMap.php b/Php8StubsMap.php
index b1db9d8e..e8b55517 100644
--- a/Php8StubsMap.php
+++ b/Php8StubsMap.php
@@ -2725,6 +2725,7 @@ public function __construct(int $phpVersionId)
   'sensitiveparametervalue' => 'stubs/Zend/SensitiveParameterValue.php',
   'zendtestforbiddynamiccall' => 'stubs/ext/zend_test/ZendTestForbidDynamicCall.php',
   'zendtestns\\unlikelycompileerror' => 'stubs/ext/zend_test/ZendTestNS/UnlikelyCompileError.php',
+  'zendtestpropertyattribute' => 'stubs/ext/zend_test/ZendTestPropertyAttribute.php',
 ));
 	$functions = \array_merge($functions, array (
   'curl_upkeep' => 'stubs/ext/curl/curl_upkeep.php',
diff --git a/stubs/ext/zend_test/ZendTestPropertyAttribute.php b/stubs/ext/zend_test/ZendTestPropertyAttribute.php
new file mode 100644
index 00000000..753b9281
--- /dev/null
+++ b/stubs/ext/zend_test/ZendTestPropertyAttribute.php
@@ -0,0 +1,11 @@
+<?php 
+
+#[\Attribute(Attribute::TARGET_PROPERTY)]
+#[\Since('8.2')]
+final class ZendTestPropertyAttribute
+{
+    public string $parameter;
+    public function __construct(string $parameter)
+    {
+    }
+}
\ No newline at end of file