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:

empty
empty
empty
empty
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_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.119.118.138
HTTP_X_FORWARDED_PROTO https
HTTP_X_HTTPS on
DOCUMENT_ROOT /home/airfpioc/public_html
REMOTE_ADDR 18.119.118.138
REMOTE_PORT 55540
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 /
PROXY_REMOTE_ADDR 198.54.116.40
HTTPS on
SCRIPT_FILENAME /home/airfpioc/public_html/index.php
QUERY_STRING
SCRIPT_URI https://air-faretravels.com/
SCRIPT_URL /
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 1725700923.4425
REQUEST_TIME 1725700923
argv Array ( )
argc 0
Key Value
PHPRC /home/airfpioc/public_html/
PATH /usr/local/bin:/bin:/usr/bin
0. Whoops\Handler\PrettyPageHandler