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/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349
Stack trace:
#0 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/foryougo/...', 1349)
#1 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(571): include('/home/foryougo/...')
#2 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/foryougo/...')
#3 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')
#4 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)
#5 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')
#6 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()
#7 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))
#8 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)
#9 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()
#10 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))
#11 /home/foryougo/public_html/workers/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/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349
Stack trace:
#0 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/foryougo/...', 1349)
#1 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(571): include('/home/foryougo/...')
#2 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/foryougo/...')
#3 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')
#4 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)
#5 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')
#6 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()
#7 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))
#8 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)
#9 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()
#10 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))
#11 /home/foryougo/public_html/workers/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))
#12 {main}"
Stacktrace:
#0 Symfony\Component\ErrorHandler\Error\FatalError in /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:11
<?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
"""
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/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\nStack trace:\n#0 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/foryougo/...', 1349)\n#1 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(571): include('/home/foryougo/...')\n#2 /home/foryougo/public_html/workers/vendor/composer/ClassLoader.php(428): Composer\Autoload\includeFile('/home/foryougo/...')\n#3 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n#4 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n#5 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n#6 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n#7 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n#8 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n#9 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n#10 /home/foryougo/public_html/workers/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n#11 /home/foryougo/public_html/workers/public/index.php(55): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n#12 {main}
"""
"
Server error: `GET https://workers.foryougo.net/api/workers_filter` resulted in a `500 Internal Server Error` response:
<!DOCTYPE html><!--
Symfony\Component\ErrorHandler\Error\FatalError: During inheritance of ArrayAccess: Uncaught Error (truncated...)