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

Environment & details:

empty
empty
empty
empty
empty
Key Value
USER
"www-data"
HOME
"/var/www"
SCRIPT_NAME
"/sansilvestre/index.php"
REQUEST_URI
"/sansilvestre/sports-pe-and-games.html"
QUERY_STRING
""
REQUEST_METHOD
"GET"
SERVER_PROTOCOL
"HTTP/1.1"
GATEWAY_INTERFACE
"CGI/1.1"
REDIRECT_URL
"/sansilvestre/sports-pe-and-games.html"
REMOTE_PORT
"38726"
SCRIPT_FILENAME
"/home/asixdev/www/sansilvestre/public/index.php"
SERVER_ADMIN
"[no address given]"
CONTEXT_DOCUMENT_ROOT
"/home/asixdev/www/sansilvestre/public/"
CONTEXT_PREFIX
"/sansilvestre"
REQUEST_SCHEME
"https"
DOCUMENT_ROOT
"/var/www/html"
REMOTE_ADDR
"44.213.80.174"
SERVER_PORT
"443"
SERVER_ADDR
"173.230.133.117"
SERVER_NAME
"dev.asixonline.com"
SERVER_SOFTWARE
"Apache/2.4.52 (Ubuntu)"
SERVER_SIGNATURE
"<address>Apache/2.4.52 (Ubuntu) Server at dev.asixonline.com Port 443</address>\n"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
HTTP_HOST
"dev.asixonline.com"
HTTP_REFERER
"http://dev.asixonline.com/sansilvestre/sports-pe-and-games.html"
HTTP_USER_AGENT
"claudebot"
HTTP_ACCEPT
"*/*"
proxy-nokeepalive
"1"
SSL_TLS_SNI
"dev.asixonline.com"
HTTPS
"on"
REDIRECT_STATUS
"200"
REDIRECT_SSL_TLS_SNI
"dev.asixonline.com"
REDIRECT_HTTPS
"on"
REDIRECT_BASE
"/sansilvestre/"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/sansilvestre/index.php"
REQUEST_TIME_FLOAT
1710845581.6153
REQUEST_TIME
1710845581
APP_ENV
"local"
APP_KEY
"base64:CCN+Zaj5WjowhB3EP6qoXxFllxCHpQnSEC9LD8oUMSk="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"sansilvestre_web"
DB_USERNAME
"asixdev"
DB_PASSWORD
"3w%xX+mZ2"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"843ba55851847d"
MAIL_PASSWORD
"738570d064f32d"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_KEY
""
PUSHER_SECRET
""
GOOGLE_RECAPTCHA_PUBLIC
"6LdxSPAUAAAAAABuASrWsJlCaISn0MmFHRkxw37d"
GOOGLE_RECAPTCHA_SECRET
"6LdxSPAUAAAAAJvrnDZtyuy4i_6umVkWNMGLCWD3"
Key Value
APP_ENV
"local"
APP_KEY
"base64:CCN+Zaj5WjowhB3EP6qoXxFllxCHpQnSEC9LD8oUMSk="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_PORT
"3306"
DB_DATABASE
"sansilvestre_web"
DB_USERNAME
"asixdev"
DB_PASSWORD
"3w%xX+mZ2"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_MAILER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"843ba55851847d"
MAIL_PASSWORD
"738570d064f32d"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_KEY
""
PUSHER_SECRET
""
GOOGLE_RECAPTCHA_PUBLIC
"6LdxSPAUAAAAAABuASrWsJlCaISn0MmFHRkxw37d"
GOOGLE_RECAPTCHA_SECRET
"6LdxSPAUAAAAAJvrnDZtyuy4i_6umVkWNMGLCWD3"
0. Whoops\Handler\PrettyPageHandler