<?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)
""" 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/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n Stack trace:\n #0 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/syotbvq/w...', 1349)\n #1 /home/syotbvq/www/stevyrey/vendor/composer/ClassLoader.php(444): include('/home/syotbvq/w...')\n #2 /home/syotbvq/www/stevyrey/vendor/composer/ClassLoader.php(322): Composer\Autoload\includeFile('/home/syotbvq/w...')\n #3 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n #4 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n #5 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n #6 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n #7 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n #8 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n #9 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n #10 /home/syotbvq/www/stevyrey/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n #11 /home/syotbvq/www/stevyrey/public/index.php(54): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n #12 {main} """
| Key | Value |
| USER | "syotbvq"
|
| SCRIPT_NAME | "/index.php"
|
| REQUEST_URI | "/sitemap.xml"
|
| QUERY_STRING | "" |
| REQUEST_METHOD | "GET"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| REDIRECT_URL | "/sitemap.xml"
|
| REMOTE_PORT | "32562"
|
| SCRIPT_FILENAME | "/home/syotbvq/www/stevyrey/public/index.php"
|
| SERVER_ADMIN | "postmaster@stevyrey.co.uk"
|
| DOCUMENT_ROOT | "/home/syotbvq/www/stevyrey/public"
|
| REMOTE_ADDR | "216.73.216.213"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "10.130.20.20"
|
| SERVER_NAME | "stevyrey.co.uk"
|
| SERVER_SOFTWARE | "Apache"
|
| SERVER_SIGNATURE | "" |
| HTTP_REMOTE_IP | "216.73.216.213"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_X_OVHREQUEST_ID | "b7446084ec54ae756079edcde8b22eb6"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_X_FORWARDED_FOR | "216.73.216.213"
|
| HTTP_X_PREDICTOR | "1"
|
| HTTP_HOST | "stevyrey.co.uk"
|
| REGISTER_GLOBALS | "0"
|
| PHP_VER | "8_0"
|
| ENVIRONMENT | "production"
|
| CFG_CLUSTER | "cluster130"
|
| HTTPS | "on"
|
| SCRIPT_URI | "https://stevyrey.co.uk:443/sitemap.xml"
|
| SCRIPT_URL | "/sitemap.xml"
|
| GEOIP_LONGITUDE | "-119.070099"
|
| GEOIP_LATITUDE | "34.355598"
|
| GEOIP_AREA_CODE | "805"
|
| GEOIP_DMA_CODE | "803"
|
| GEOIP_CITY | "Santa Paula"
|
| GEOIP_REGION | "CA"
|
| GEOIP_COUNTRY_NAME | "United States"
|
| GEOIP_COUNTRY_CODE | "US"
|
| UNIQUE_ID | "ak2Clmg7hoQNSNEkFKnfIQAAAn4"
|
| REDIRECT_STATUS | "200"
|
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1783464598.4872
|
| REQUEST_TIME | 1783464598
|
| argv | [] |
| argc | 0
|
| APP_NAME | "Steve Reynolds Lighting | Sound | Production"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:+mvrZhmApzYIRtNYWxW+oET5+WR4AJhPnSvWZ/zijxU="
|
| APP_DEBUG | "true"
|
| APP_URL | "http://stevyrey.co.uk"
|
| LOG_CHANNEL | "stack"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "lavavel-site"
|
| DB_USERNAME | "root"
|
| DB_PASSWORD | "yCfyD4hKoRCo"
|
| 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 | "log"
|
| MAIL_HOST | "smtp.mailtrap.io"
|
| MAIL_PORT | "2525"
|
| MAIL_USERNAME | "null"
|
| MAIL_PASSWORD | "null"
|
| MAIL_ENCRYPTION | "null"
|
| MAIL_FROM_ADDRESS | "null"
|
| MAIL_FROM_NAME | "Steve Reynolds Lighting | Sound | Production"
|
| 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"
|
| Key | Value |
| USER | "syotbvq"
|
| SCRIPT_NAME | "/index.php"
|
| REQUEST_URI | "/sitemap.xml"
|
| QUERY_STRING | "" |
| REQUEST_METHOD | "GET"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| REDIRECT_URL | "/sitemap.xml"
|
| REMOTE_PORT | "32562"
|
| SCRIPT_FILENAME | "/home/syotbvq/www/stevyrey/public/index.php"
|
| SERVER_ADMIN | "postmaster@stevyrey.co.uk"
|
| DOCUMENT_ROOT | "/home/syotbvq/www/stevyrey/public"
|
| REMOTE_ADDR | "216.73.216.213"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "10.130.20.20"
|
| SERVER_NAME | "stevyrey.co.uk"
|
| SERVER_SOFTWARE | "Apache"
|
| SERVER_SIGNATURE | "" |
| HTTP_REMOTE_IP | "216.73.216.213"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_X_OVHREQUEST_ID | "b7446084ec54ae756079edcde8b22eb6"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_X_FORWARDED_FOR | "216.73.216.213"
|
| HTTP_X_PREDICTOR | "1"
|
| HTTP_HOST | "stevyrey.co.uk"
|
| REGISTER_GLOBALS | "0"
|
| PHP_VER | "8_0"
|
| ENVIRONMENT | "production"
|
| CFG_CLUSTER | "cluster130"
|
| HTTPS | "on"
|
| SCRIPT_URI | "https://stevyrey.co.uk:443/sitemap.xml"
|
| SCRIPT_URL | "/sitemap.xml"
|
| GEOIP_LONGITUDE | "-119.070099"
|
| GEOIP_LATITUDE | "34.355598"
|
| GEOIP_AREA_CODE | "805"
|
| GEOIP_DMA_CODE | "803"
|
| GEOIP_CITY | "Santa Paula"
|
| GEOIP_REGION | "CA"
|
| GEOIP_COUNTRY_NAME | "United States"
|
| GEOIP_COUNTRY_CODE | "US"
|
| UNIQUE_ID | "ak2Clmg7hoQNSNEkFKnfIQAAAn4"
|
| REDIRECT_STATUS | "200"
|
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1783464598.4872
|
| REQUEST_TIME | 1783464598
|
| argv | [] |
| argc | 0
|
| APP_NAME | "Steve Reynolds Lighting | Sound | Production"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:+mvrZhmApzYIRtNYWxW+oET5+WR4AJhPnSvWZ/zijxU="
|
| APP_DEBUG | "true"
|
| APP_URL | "http://stevyrey.co.uk"
|
| LOG_CHANNEL | "stack"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "lavavel-site"
|
| DB_USERNAME | "root"
|
| DB_PASSWORD | "yCfyD4hKoRCo"
|
| 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 | "log"
|
| MAIL_HOST | "smtp.mailtrap.io"
|
| MAIL_PORT | "2525"
|
| MAIL_USERNAME | "null"
|
| MAIL_PASSWORD | "null"
|
| MAIL_ENCRYPTION | "null"
|
| MAIL_FROM_ADDRESS | "null"
|
| MAIL_FROM_NAME | "Steve Reynolds Lighting | Sound | Production"
|
| 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"
|