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 dd13766 commit aea7159Copy full SHA for aea7159
CHANGELOG.md
@@ -1,6 +1,10 @@
1
CHANGELOG
2
=========
3
4
+0.4.7 (2023-06-06)
5
+------------------
6
+* Removed return type of AbstractType::getValue, so it can be inferred from the property for static analysis.
7
+
8
0.4.6 (2023-06-06)
9
------------------
10
* Update return types for AbstractType and some ASN1 helper methods to provider better hints for static analysis.
src/FreeDSx/Asn1/Type/AbstractType.php
@@ -181,9 +181,6 @@ public function setTagNumber($int)
181
return $this;
182
}
183
184
- /**
185
- * @return mixed
186
- */
187
public function getValue()
188
{
189
return $this->value;
0 commit comments