### Description The following code: ```php <?php var_dump(session_set_cookie_params(3600, "/foo")); ?> ``` Resulted in this output: ``` NULL ``` But I expected this output instead: ``` Fatal error: session_set_cookie_params(): Return value must be of type bool, null returned in Unknown on line 0 ``` To reproduce: ``` -d "session.use_cookies=0" -d "zend_extension=/php-src/modules/opcache.so" -d "opcache.enable=1" -d "opcache.enable_cli=1" -d "opcache.jit=1205" ``` ### PHP Version nightly ### Operating System ubuntu 22.04