appendices/migration80/new-features.xml
497c40ac164d5873fd87f622dfdeb5206392b446
...
...
@@ -42,7 +42,7 @@
42
42
<title>Union Types</title>
43
43

44
44
<para>
45
-
Support for <link linkend="language.types.declarations.union">union types</link> has been added.
45
+
Support for <link linkend="language.types.declarations.composite.union">union types</link> has been added.
46
46
<!-- RFC: https://wiki.php.net/rfc/union_types_v2 -->
47
47
</para>
48
48
</sect3>
...
...
@@ -232,6 +232,11 @@ class ChildClass extends ParentClass {
232
232
<code>(int) $resource</code>. It provides the same functionality under a clearer API.
233
233
</para>
234
234
</listitem>
235
+
<listitem>
236
+
<para>
237
+
The <classname>InternalIterator</classname> has been added.
238
+
</para>
239
+
</listitem>
235
240
</itemizedlist>
236
241
</sect3>
237
242
</sect2>
...
...
@@ -339,7 +344,7 @@ class ChildClass extends ParentClass {
339
344
<para>
340
345
Added Cryptographic Message Syntax (CMS) (<link xlink:href="&url.rfc;5652">RFC 5652</link>)
341
346
support composed of functions for encryption, decryption, signing, verifying and reading. The API
342
-
is similar to the API for PKCS #7 functions with an addition of new encoding constants:
347
+
is similar to the API for <acronym>PKCS</acronym> #7 functions with an addition of new encoding constants:
343
348
<constant>OPENSSL_ENCODING_DER</constant>, <constant>OPENSSL_ENCODING_SMIME</constant>
344
349
and <constant>OPENSSL_ENCODING_PEM</constant>:
345
350
<simplelist>
...
...
@@ -352,7 +357,8 @@ class ChildClass extends ParentClass {
352
357
the results to the supplied file.
353
358
</member>
354
359
<member>
355
-
<function>openssl_cms_read</function> that exports the CMS file to an array of PEM certificates.
360
+
<function>openssl_cms_read</function> that exports the CMS file to an array
361
+
of <acronym>PEM</acronym> certificates.
356
362
</member>
357
363
<member>
358
364
<function>openssl_cms_sign</function> that signs the MIME message in the file with a cert and key
359
365