Fatal error: During inheritance of ArrayAccess: Uncaught Whoops\Exception\ErrorException: Return type of Curl\CaseInsensitiveArray::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php:92 Stack trace: #0 /home/airfpioc/public_html/app/vendor/sentry/sentry/src/ErrorHandler.php(303): Whoops\Run->handleError(8192, 'Return type of ...', '/home/airfpioc/...', 92, Array) #1 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php(5): Sentry\ErrorHandler->handleError(8192, 'Return type of ...', '/home/airfpioc/...', 92) #2 /home/airfpioc/public_html/app/vendor/composer/ClassLoader.php(571): include('/home/airfpioc/...') #3 /home/airfpioc/public_html/app/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/airfpioc/...') #4 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/Curl.php(1963): Composer\Autoload\ClassLoader->loadClass('Curl\\CaseInsens...') #5 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/Curl.php(118): Curl\Curl->initialize(NULL) #6 /home/airfpioc/public_html/index.php(61): Curl\Curl->__construct() #7 {main} in /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php on line 5
Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_ERROR)
During inheritance of ArrayAccess: Uncaught Whoops\Exception\ErrorException: Return type of Curl\CaseInsensitiveArray::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php:92 Stack trace: #0 /home/airfpioc/public_html/app/vendor/sentry/sentry/src/ErrorHandler.php(303): Whoops\Run->handleError(8192, 'Return type of ...', '/home/airfpioc/...', 92, Array) #1 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php(5): Sentry\ErrorHandler->handleError(8192, 'Return type of ...', '/home/airfpioc/...', 92) #2 /home/airfpioc/public_html/app/vendor/composer/ClassLoader.php(571): include('/home/airfpioc/...') #3 /home/airfpioc/public_html/app/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/airfpioc/...') #4 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/Curl.php(1963): Composer\Autoload\ClassLoader->loadClass('Curl\\CaseInsens...') #5 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/Curl.php(118): Curl\Curl->initialize(NULL) #6 /home/airfpioc/public_html/index.php(61): Curl\Curl->__construct() #7 {main} Whoops\Exception\ErrorException thrown with message "During inheritance of ArrayAccess: Uncaught Whoops\Exception\ErrorException: Return type of Curl\CaseInsensitiveArray::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php:92 Stack trace: #0 /home/airfpioc/public_html/app/vendor/sentry/sentry/src/ErrorHandler.php(303): Whoops\Run->handleError(8192, 'Return type of ...', '/home/airfpioc/...', 92, Array) #1 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php(5): Sentry\ErrorHandler->handleError(8192, 'Return type of ...', '/home/airfpioc/...', 92) #2 /home/airfpioc/public_html/app/vendor/composer/ClassLoader.php(571): include('/home/airfpioc/...') #3 /home/airfpioc/public_html/app/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/airfpioc/...') #4 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/Curl.php(1963): Composer\Autoload\ClassLoader->loadClass('Curl\\CaseInsens...') #5 /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/Curl.php(118): Curl\Curl->initialize(NULL) #6 /home/airfpioc/public_html/index.php(61): Curl\Curl->__construct() #7 {main}" Stacktrace: #2 Whoops\Exception\ErrorException in /home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php:5 #1 Whoops\Run:handleError in /home/airfpioc/public_html/app/vendor/filp/whoops/src/Whoops/Run.php:486 #0 Whoops\Run:handleShutdown in [internal]:0
Stack frames (3)
2
Whoops\Exception\ErrorException
/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php5
1
Whoops\Run handleError
/vendor/filp/whoops/src/Whoops/Run.php486
0
Whoops\Run handleShutdown
[internal]0
/home/airfpioc/public_html/app/vendor/php-curl-class/php-curl-class/src/Curl/CaseInsensitiveArray.php
<?php

namespace Curl;

class CaseInsensitiveArray implements \ArrayAccess, \Countable, \Iterator
{

    /**
     * @var mixed[] Data storage with lowercase keys.
     * @see offsetSet()
     * @see offsetExists()
     * @see offsetUnset()
     * @see offsetGet()
     * @see count()
     * @see current()
     * @see next()
     * @see key()
     */
    private $data = array();

    /**
     * @var string[] Case-sensitive keys.
     * @see offsetSet()
     * @see offsetUnset()
     * @see key()
     */
    private $keys = array();

    /**
     * Construct
     *
     * Allow creating an empty array or converting an existing array to a
     * case-insensitive array. Caution: Data may be lost when converting
     * case-sensitive arrays to case-insensitive arrays.
     *
     * @param mixed[] $initial (optional) Existing array to convert.
     *
     * @return CaseInsensitiveArray
     *
     * @access public
/home/airfpioc/public_html/app/vendor/filp/whoops/src/Whoops/Run.php
     *
     * @return void
     */
    public function handleShutdown()
    {
        // If we reached this step, we are in shutdown handler.
        // An exception thrown in a shutdown handler will not be propagated
        // to the exception handler. Pass that information along.
        $this->canThrowExceptions = false;
 
        $error = $this->system->getLastError();
        if ($error && Misc::isLevelFatal($error['type'])) {
            // If there was a fatal error,
            // it was not handled in handleError yet.
            $this->allowQuit = false;
            $this->handleError(
                $error['type'],
                $error['message'],
                $error['file'],
                $error['line']
            );
        }
    }
 
    /**
     * @param Throwable $exception
     *
     * @return Inspector
     */
    private function getInspector($exception)
    {
        return new Inspector($exception);
    }
 
    /**
     * Resolves the giving handler.
     *
     * @param callable|HandlerInterface $handler
     *
     * @return HandlerInterface
[internal]

Environment & details:

Key Value
url en/usd/flights/isb/jed/oneway/economy/01-08-2024/1/0/0
empty
empty
Key Value
HandLtestDomainNameServer HandLtestDomainValueServer
handl_landing_page https://itrezzo.com/fr/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Fitrezzo.com%2Ffr%2Fsolutions%2Fsynchronisation-active%2F
handl_ip 18.219.149.113
handl_url_base https://itrezzo.com/fr/wp-json/oembed/1.0/embed
handl_url https://itrezzo.com/fr/wp-json/oembed/1.0/embed?format=xml&url=https%3A%2F%2Fitrezzo.com%2Ffr%2Fsolutions%2Fsynchronisation-active%2F
user_agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
empty
Key Value
PHPRC /home/airfpioc/public_html/
PATH /usr/local/bin:/bin:/usr/bin
HTTP_ACCEPT */*
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
HTTP_COOKIE HandLtestDomainNameServer=HandLtestDomainValueServer; handl_landing_page=https%3A%2F%2Fitrezzo.com%2Ffr%2Fwp-json%2Foembed%2F1.0%2Fembed%3Fformat%3Dxml%26url%3Dhttps%253A%252F%252Fitrezzo.com%252Ffr%252Fsolutions%252Fsynchronisation-active%252F; handl_ip=18.219.149.113; handl_url_base=https%3A%2F%2Fitrezzo.com%2Ffr%2Fwp-json%2Foembed%2F1.0%2Fembed; handl_url=https%3A%2F%2Fitrezzo.com%2Ffr%2Fwp-json%2Foembed%2F1.0%2Fembed%3Fformat%3Dxml%26url%3Dhttps%253A%252F%252Fitrezzo.com%252Ffr%252Fsolutions%252Fsynchronisation-active%252F; user_agent=Mozilla%2F5.0%20AppleWebKit%2F537.36%20%28KHTML%2C%20like%20Gecko%3B%20compatible%3B%20ClaudeBot%2F1.0%3B%20%2Bclaudebot%40anthropic.com%29
HTTP_HOST air-faretravels.com
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_X_FORWARDED_FOR 18.219.149.113
HTTP_X_FORWARDED_PROTO https
HTTP_X_HTTPS on
DOCUMENT_ROOT /home/airfpioc/public_html
REMOTE_ADDR 18.219.149.113
REMOTE_PORT 40730
SERVER_ADDR 198.54.116.40
SERVER_NAME air-faretravels.com
SERVER_ADMIN webmaster@air-faretravels.com
SERVER_PORT 443
REQUEST_SCHEME https
REQUEST_URI /en/usd/flights/isb/jed/oneway/economy/01-08-2024/1/0/0
REDIRECT_URL /en/usd/flights/isb/jed/oneway/economy/01-08-2024/1/0/0
REDIRECT_REQUEST_METHOD GET
PROXY_REMOTE_ADDR 198.54.116.40
HTTPS on
REDIRECT_STATUS 200
SCRIPT_FILENAME /home/airfpioc/public_html/index.php
QUERY_STRING url=en/usd/flights/isb/jed/oneway/economy/01-08-2024/1/0/0
SCRIPT_URI https://air-faretravels.com/en/usd/flights/isb/jed/oneway/economy/01-08-2024/1/0/0
SCRIPT_URL /en/usd/flights/isb/jed/oneway/economy/01-08-2024/1/0/0
SCRIPT_NAME /index.php
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE LiteSpeed
REQUEST_METHOD GET
X-LSCACHE on
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1725762025.9493
REQUEST_TIME 1725762025
argv Array ( [0] => url=en/usd/flights/isb/jed/oneway/economy/01-08-2024/1/0/0 )
argc 1
Key Value
PHPRC /home/airfpioc/public_html/
PATH /usr/local/bin:/bin:/usr/bin
0. Whoops\Handler\PrettyPageHandler