We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2802b16 commit d60a8d7Copy full SHA for d60a8d7
Php8StubsMap.php
@@ -2728,6 +2728,7 @@ public function __construct(int $phpVersionId)
2728
'datemalformedstringexception' => 'stubs/ext/date/DateMalformedStringException.php',
2729
'dateobjecterror' => 'stubs/ext/date/DateObjectError.php',
2730
'daterangeerror' => 'stubs/ext/date/DateRangeError.php',
2731
+ 'override' => 'stubs/Zend/Override.php',
2732
]);
2733
2734
$functions = \array_merge($functions, [
stubs/Zend/Override.php
@@ -0,0 +1,13 @@
1
+<?php
2
+
3
+/**
4
+ * @strict-properties
5
+ */
6
+#[\Attribute(Attribute::TARGET_METHOD)]
7
+#[\Since('8.3')]
8
+final class Override
9
+{
10
+ public function __construct()
11
+ {
12
+ }
13
+}
0 commit comments