You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR was merged into the 2.14.x-dev branch.
Discussion
----------
Commits
-------
877386b Phpstan level 2 fixes
92cad4d Phpstan level 4 fixes
cc3972b Use phpstan level 4 as default
if (!defined('OPENSSL_TLSEXT_SERVER_NAME') || !OPENSSL_TLSEXT_SERVER_NAME) {
71
-
thrownewErrorException('Asset upload support requires Server Name Indication. This is not supported by your PHP version. See http://php.net/manual/en/openssl.constsni.php.');
70
+
if (!defined('OPENSSL_TLSEXT_SERVER_NAME') || OPENSSL_TLSEXT_SERVER_NAME == 0) {
71
+
thrownewErrorException('Asset upload support requires Server Name Indication. This is not supported by your PHP version. See https://www.php.net/manual/en/openssl.constsni.php.');
72
72
}
73
73
74
74
// Asset creation requires a separate endpoint, uploads.github.com.
0 commit comments