Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_UNKNOWN)
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/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1277 Stack trace: #0 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() #1 /home/u641631866/domains/thedogbox.in/public_html/vendor/composer/ClassLoader.php(444): include('/home/u64163186...') #2 /home/u641631866/domains/thedogbox.in/public_html/vendor/composer/ClassLoader.php(322): Composer\Autoload\includeFile() #3 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/helpers.php(109): Composer\Autoload\ClassLoader->loadClass() #4 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect() #5 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config() #6 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(219): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap() #8 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(156): Illuminate\Foundation\Application->bootstrapWith() #9 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter() #11 /home/u641631866/domains/thedogbox.in/public_html/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle() #12 {main} Symfony\Component\Debug\Exception\FatalErrorException 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/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1277 Stack trace: #0 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() #1 /home/u641631866/domains/thedogbox.in/public_html/vendor/composer/ClassLoader.php(444): include('/home/u64163186...') #2 /home/u641631866/domains/thedogbox.in/public_html/vendor/composer/ClassLoader.php(322): Composer\Autoload\includeFile() #3 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/helpers.php(109): Composer\Autoload\ClassLoader->loadClass() #4 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect() #5 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config() #6 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases() #7 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(219): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap() #8 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(156): Illuminate\Foundation\Application->bootstrapWith() #9 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\Foundation\Http\Kernel->bootstrap() #10 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter() #11 /home/u641631866/domains/thedogbox.in/public_html/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle() #12 {main}" Stacktrace: #0 Symfony\Component\Debug\Exception\FatalErrorException in /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:11
0
Symfony\Component\Debug\Exception\FatalErrorException
/vendor/laravel/framework/src/Illuminate/Support/Collection.php11
/home/u641631866/domains/thedogbox.in/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  $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/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1277\n
    Stack trace:\n
    #0 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError()\n
    #1 /home/u641631866/domains/thedogbox.in/public_html/vendor/composer/ClassLoader.php(444): include('/home/u64163186...')\n
    #2 /home/u641631866/domains/thedogbox.in/public_html/vendor/composer/ClassLoader.php(322): Composer\Autoload\includeFile()\n
    #3 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Support/helpers.php(109): Composer\Autoload\ClassLoader->loadClass()\n
    #4 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect()\n
    #5 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config()\n
    #6 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
    #7 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(219): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap()\n
    #8 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(156): Illuminate\Foundation\Application->bootstrapWith()\n
    #9 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(140): Illuminate\Foundation\Http\Kernel->bootstrap()\n
    #10 /home/u641631866/domains/thedogbox.in/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(110): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()\n
    #11 /home/u641631866/domains/thedogbox.in/public_html/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle()\n
    #12 {main}
    """
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
LSPHP_ProcessGroup
"on"
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_HOST
"thedogbox.in"
HTTP_USER_AGENT
"claudebot"
DOCUMENT_ROOT
"/home/u641631866/domains/thedogbox.in/public_html"
REMOTE_ADDR
"34.236.152.203"
REMOTE_PORT
"44720"
SERVER_ADDR
"31.170.166.254"
SERVER_NAME
"thedogbox.in"
SERVER_ADMIN
""
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/"
REDIRECT_URL
"/"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
CRAWLER_USLEEP
"1000"
CRAWLER_LOAD_LIMIT_ENFORCE
"25"
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/u641631866/domains/thedogbox.in/public_html/public/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://thedogbox.in/"
SCRIPT_URL
"/"
SCRIPT_NAME
"/public/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on,crawler,esi,combine"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1710818832.9165
REQUEST_TIME
1710818832
APP_NAME
"The Dog Box"
APP_KEY
"base64:CXnEtAxMALIj7GBQcAmBJodK/Eo5NkKUb39wBNOmc3M="
APP_DEBUG
"true"
APP_URL
"https://thedogbox.in"
APP_ENV
"production"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"u641631866_thedogbox"
DB_USERNAME
"u641631866_thedogboxuser"
DB_PASSWORD
"|VfBaPJpl4M"
DB_STRICT
"false"
DB2_CONNECTION
"mysql"
DB2_HOST
"127.0.0.1"
DB2_PORT
"3306"
DB2_DATABASE
"affiliate"
DB2_USERNAME
"root"
DB2_PASSWORD
""
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_DRIVER
"smtp"
MAIL_HOST
"smtp.hostinger.com"
MAIL_PORT
"465"
MAIL_USERNAME
"info@dogbox.in"
MAIL_PASSWORD
"Petscribe#619"
MAIL_ENCRYPTION
"ssl"
MAIL_FROM_ADDRESS
"info@dogbox.in"
MAIL_REPLY_ADDRESS
"info@thedogbox.in"
MAIL_FROM_NAME
"The Dog Box Team"
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"
RAZORPAY_KEY
"rzp_live_TgvHJiSxTpnoVT"
RAZORPAY_SECRET
"hLXd82MSAZgwJkiUnqEcKkSo"
FACEBOOK_CLIENT_ID
"557215332244365"
FACEBOOK_CLIENT_SECRET
"91dfe4b2b51f6fa654ef1d198ae48dee"
FACEBOOK_REDIRECT
"https://thedogbox.in/login/facebook/callback"
GOOGLE_CLIENT_ID
"858072725011-j5l99sagmc7tmst4mhpgg6iuncej7h4t.apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET
"6HLoSRaWhFGMCRe4N8Q4Ac_R"
GOOGLE_REDIRECT
"https://thedogbox.in/login/google/callback"
MAILCHIMP_APIKEY
"1356c9bdaa5efa5771686b0fdd058e34-us2"
MAILCHIMP_LIST_ID
"7bd695983a"
AFFILIATE_DISCOUNT
"10"
Key Value
APP_NAME
"The Dog Box"
APP_KEY
"base64:CXnEtAxMALIj7GBQcAmBJodK/Eo5NkKUb39wBNOmc3M="
APP_DEBUG
"true"
APP_URL
"https://thedogbox.in"
APP_ENV
"production"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"u641631866_thedogbox"
DB_USERNAME
"u641631866_thedogboxuser"
DB_PASSWORD
"|VfBaPJpl4M"
DB_STRICT
"false"
DB2_CONNECTION
"mysql"
DB2_HOST
"127.0.0.1"
DB2_PORT
"3306"
DB2_DATABASE
"affiliate"
DB2_USERNAME
"root"
DB2_PASSWORD
""
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_DRIVER
"smtp"
MAIL_HOST
"smtp.hostinger.com"
MAIL_PORT
"465"
MAIL_USERNAME
"info@dogbox.in"
MAIL_PASSWORD
"Petscribe#619"
MAIL_ENCRYPTION
"ssl"
MAIL_FROM_ADDRESS
"info@dogbox.in"
MAIL_REPLY_ADDRESS
"info@thedogbox.in"
MAIL_FROM_NAME
"The Dog Box Team"
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"
RAZORPAY_KEY
"rzp_live_TgvHJiSxTpnoVT"
RAZORPAY_SECRET
"hLXd82MSAZgwJkiUnqEcKkSo"
FACEBOOK_CLIENT_ID
"557215332244365"
FACEBOOK_CLIENT_SECRET
"91dfe4b2b51f6fa654ef1d198ae48dee"
FACEBOOK_REDIRECT
"https://thedogbox.in/login/facebook/callback"
GOOGLE_CLIENT_ID
"858072725011-j5l99sagmc7tmst4mhpgg6iuncej7h4t.apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET
"6HLoSRaWhFGMCRe4N8Q4Ac_R"
GOOGLE_REDIRECT
"https://thedogbox.in/login/google/callback"
MAILCHIMP_APIKEY
"1356c9bdaa5efa5771686b0fdd058e34-us2"
MAILCHIMP_LIST_ID
"7bd695983a"
AFFILIATE_DISCOUNT
"10"
0. Whoops\Handler\PrettyPageHandler