Symfony \ Component \ ErrorHandler \ Error \ FatalError
During inheritance of ArrayAccess: Uncaught ErrorException: Return type of Illuminate\Support\Collection::offsetExists($key) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349 Stack trace: #0 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/customer/...', 1349) #1 /home/customer/www/xenome.app/public_html/vendor/composer/ClassLoader.php(444): include('/home/customer/...') #2 /home/customer/www/xenome.app/public_html/vendor/composer/ClassLoader.php(322): Composer\Autoload\includeFile('/home/customer/...') #3 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...') #4 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array) #5 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases') #6 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application)) #8 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array) #9 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request)) #11 /home/customer/www/xenome.app/public_html/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request)) #12 {main} Symfony\Component\ErrorHandler\Error\FatalError thrown with message "During inheritance of ArrayAccess: Uncaught ErrorException: Return type of Illuminate\Support\Collection::offsetExists($key) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349 Stack trace: #0 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/customer/...', 1349) #1 /home/customer/www/xenome.app/public_html/vendor/composer/ClassLoader.php(444): include('/home/customer/...') #2 /home/customer/www/xenome.app/public_html/vendor/composer/ClassLoader.php(322): Composer\Autoload\includeFile('/home/customer/...') #3 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...') #4 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array) #5 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases') #6 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application)) #8 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array) #9 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request)) #11 /home/customer/www/xenome.app/public_html/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request)) #12 {main}" Stacktrace: #0 Symfony\Component\ErrorHandler\Error\FatalError in /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:11
0
Symfony\Component\ErrorHandler\Error\FatalError
/vendor/laravel/framework/src/Illuminate/Support/Collection.php11
/home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php
<?php
 
namespace Illuminate\Support;
 
use ArrayAccess;
use ArrayIterator;
use Illuminate\Support\Traits\EnumeratesValues;
use Illuminate\Support\Traits\Macroable;
use stdClass;
 
class Collection implements ArrayAccess, Enumerable
{
    use EnumeratesValues, Macroable;
 
    /**
     * The items contained in the collection.
     *
     * @var array
     */
    protected $items = [];
 
    /**
     * Create a new collection.
     *
     * @param  mixed  $items
     * @return void
     */
    public function __construct($items = [])
    {
        $this->items = $this->getArrayableItems($items);
    }
 
    /**
     * Create a new collection by invoking the callback a given amount of times.
     *
     * @param  int  $number
     * @param  callable|null  $callback
     * @return static
     */
    public static function times($number, callable $callback = null)
Arguments
  1. """
    During inheritance of ArrayAccess: Uncaught ErrorException: Return type of Illuminate\Support\Collection::offsetExists($key) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
    Stack trace:\n
    #0 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/customer/...', 1349)\n
    #1 /home/customer/www/xenome.app/public_html/vendor/composer/ClassLoader.php(444): include('/home/customer/...')\n
    #2 /home/customer/www/xenome.app/public_html/vendor/composer/ClassLoader.php(322): Composer\Autoload\includeFile('/home/customer/...')\n
    #3 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
    #4 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
    #5 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
    #6 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
    #7 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
    #8 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
    #9 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
    #10 /home/customer/www/xenome.app/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
    #11 /home/customer/www/xenome.app/public_html/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
    #12 {main}
    """
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
PATH
"/usr/local/bin:/usr/bin:/bin"
DOCUMENT_ROOT
"/home/u297-0oznh58lfr0x/www/xenome.app/public_html"
REDIRECT_STATUS
"200"
HTTPS
"on"
UNIQUE_ID
"adtqRDaUz36Gt1Wdd5h3eQAAAA4"
SCRIPT_URL
"/"
SCRIPT_URI
"https://xenome.app/"
PHPHANDLER
"/usr/local/php82/bin/php"
HTTP_X_PORT
"60702"
HTTP_X_REAL_IP
"162.0.217.198"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_HOST
"xenome.app"
HTTP_CONNECTION
"close"
HTTP_USER_AGENT
"Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
HTTP_ACCEPT
"*/*"
HTTP_REFERER
"https://www.btolat.com/"
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"xenome.app"
SERVER_ADDR
"35.240.229.7"
SERVER_PORT
"443"
REMOTE_ADDR
"162.0.217.198"
SERVER_ADMIN
"webmaster"
SCRIPT_FILENAME
"/home/u297-0oznh58lfr0x/www/xenome.app/public_html/public/index.php"
REMOTE_PORT
"12148"
REDIRECT_URL
"/"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.0"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/"
SCRIPT_NAME
"/public/index.php"
PHP_DEFAULT_SOCKET_TIMEOUT
"40"
PHP_MAX_EXECUTION_TIME
"120"
PHP_MAX_INPUT_TIME
"120"
PHP_MEMORY_LIMIT
"768M"
PHP_POST_MAX_SIZE
"256M"
PHP_UPLOAD_MAX_FILESIZE
"256M"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1775987268.9131
REQUEST_TIME
1775987268
APP_NAME
"Xenome"
APP_ENV
"local"
APP_KEY
"base64:0XTQ3Ww/ZeiPBtuyQxTCl+Wx3db1icz1W1vmdYIRsRo="
APP_DEBUG
"true"
APP_URL
"https://xenome.app/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"dbex5vffleityn"
DB_USERNAME
"uiyydy8wqdc04"
DB_PASSWORD
"4l#1m15s{h24"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp-relay.sendinblue.com"
MAIL_PORT
"587"
MAIL_USERNAME
"scott@xenome.com.au"
MAIL_PASSWORD
"qGsCLmBrEtZYfMDb"
MAIL_ENCRYPTION
"null"
MAIL_FROM_ADDRESS
"admin@demo.com"
MAIL_FROM_NAME
"Xenome"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
MAIL_DRIVER
"smtp"
CEDEX_URL
"https://envato.cedexdemo.in/api/"
Key Value
APP_NAME
"Xenome"
APP_ENV
"local"
APP_KEY
"base64:0XTQ3Ww/ZeiPBtuyQxTCl+Wx3db1icz1W1vmdYIRsRo="
APP_DEBUG
"true"
APP_URL
"https://xenome.app/"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"dbex5vffleityn"
DB_USERNAME
"uiyydy8wqdc04"
DB_PASSWORD
"4l#1m15s{h24"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
QUEUE_CONNECTION
"sync"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp-relay.sendinblue.com"
MAIL_PORT
"587"
MAIL_USERNAME
"scott@xenome.com.au"
MAIL_PASSWORD
"qGsCLmBrEtZYfMDb"
MAIL_ENCRYPTION
"null"
MAIL_FROM_ADDRESS
"admin@demo.com"
MAIL_FROM_NAME
"Xenome"
AWS_ACCESS_KEY_ID
""
AWS_SECRET_ACCESS_KEY
""
AWS_DEFAULT_REGION
"us-east-1"
AWS_BUCKET
""
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
MAIL_DRIVER
"smtp"
CEDEX_URL
"https://envato.cedexdemo.in/api/"
0. Whoops\Handler\PrettyPageHandler