PHP :: Bug #70395 :: Missing ARG_INFO for openssl_seal()

 [2015-09-01 00:39 UTC] cmb@php.net

Description:
------------
The parameter info of openssl_seal() obtained via reflection
doesn't contain the optional $method parameter which was added as
of PHP 5.3.0. See <https://3v4l.org/FaprH>.


Test script:
---------------
<?php
$func = new ReflectionFunction('openssl_seal');
$param = $func->getParameters()[4];
var_dump($param);
?>


Expected result:
----------------
object(ReflectionParameter)#6 (1) {
  ["name"]=>
  string(6) "method"
}


Actual result:
--------------
NULL