Update phar.php

This commit is contained in:
Daniil Gentili 2022-12-10 21:03:03 +01:00 committed by GitHub
parent 518b2a8861
commit d0373d23c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,10 +41,10 @@ class Installer
public function __construct() public function __construct()
{ {
if (PHP_MAJOR_VERSION < 8 || PHP_MINOR_VERSION < 1) { if (PHP_MAJOR_VERSION < 8 || PHP_MINOR_VERSION < 1) {
throw new \Exception('MadelineProto requires at least PHP 8.1.'); die('MadelineProto requires at least PHP 8.1.'.PHP_EOL);
} }
if (PHP_INT_SIZE < 8) { if (PHP_INT_SIZE < 8) {
throw new \Exception('A 64-bit build of PHP is required to run MadelineProto, PHP 8.1 is required.'); die('A 64-bit build of PHP is required to run MadelineProto, PHP 8.1 is required.'.PHP_EOL);
} }
$backtrace = \debug_backtrace(0); $backtrace = \debug_backtrace(0);
if (\count($backtrace) === 1) { if (\count($backtrace) === 1) {