/home/sulayici/app_sulayici/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
flock($stream, LOCK_EX);
}
$this->streamWrite($stream, $record);
if ($this->useLocking) {
flock($stream, LOCK_UN);
}
}
/**
* Write to stream
* @param resource $stream
* @param array $record
*
* @phpstan-param FormattedRecord $record
*/
protected function streamWrite($stream, array $record): void
{
fwrite($stream, (string) $record['formatted']);
}
private function customErrorHandler(int $code, string $msg): bool
{
$this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
return true;
}
private function getDirFromStream(string $stream): ?string
{
$pos = strpos($stream, '://');
if ($pos === false) {
return dirname($stream);
}
if ('file://' === substr($stream, 0, 7)) {
return dirname(substr($stream, 7));
}
Arguments
"fwrite(): Write of 1897 bytes failed with errno=28 No space left on device"
/home/sulayici/app_sulayici/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
flock($stream, LOCK_EX);
}
$this->streamWrite($stream, $record);
if ($this->useLocking) {
flock($stream, LOCK_UN);
}
}
/**
* Write to stream
* @param resource $stream
* @param array $record
*
* @phpstan-param FormattedRecord $record
*/
protected function streamWrite($stream, array $record): void
{
fwrite($stream, (string) $record['formatted']);
}
private function customErrorHandler(int $code, string $msg): bool
{
$this->errorMessage = preg_replace('{^(fopen|mkdir)\(.*?\): }', '', $msg);
return true;
}
private function getDirFromStream(string $stream): ?string
{
$pos = strpos($stream, '://');
if ($pos === false) {
return dirname($stream);
}
if ('file://' === substr($stream, 0, 7)) {
return dirname(substr($stream, 7));
}
Arguments
stream resource @185
timed_out: false
blocked: true
eof: false
wrapper_type: "plainfile"
stream_type: "STDIO"
mode: "a"
unread_bytes: 0
seekable: true
uri: "/home/sulayici/app_sulayici/storage/logs/laravel.log"
options: []
}
"""
[2025-06-15 22:02:45] laravel.EMERGENCY: Unable to create configured logger. Using emergency logger. {"exception":"[object] (Error(code: 0): Class \"Illuminate\\Support\\Collection\" not found at /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php:110)\n
[stacktrace]\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(240): collect(Array)\n
#1 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(202): Illuminate\\Log\\LogManager->createStackDriver(Array)\n
#2 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(118): Illuminate\\Log\\LogManager->resolve('stack')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(98): Illuminate\\Log\\LogManager->get('stack')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(547): Illuminate\\Log\\LogManager->driver()\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(123): Illuminate\\Log\\LogManager->error('During inherita...', Array)\n
#6 /home/sulayici/app_sulayici/app/Exceptions/Handler.php(39): Illuminate\\Foundation\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(88): App\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(130): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleException(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#9 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleShutdown()\n
#10 {main}\n
"} \n
"""
/home/sulayici/app_sulayici/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php
if (!is_resource($stream)) {
$this->stream = null;
throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened in append mode: '.$this->errorMessage, $url));
}
stream_set_chunk_size($stream, $this->streamChunkSize);
$this->stream = $stream;
}
$stream = $this->stream;
if (!is_resource($stream)) {
throw new \LogicException('No stream was opened yet');
}
if ($this->useLocking) {
// ignoring errors here, there's not much we can do about them
flock($stream, LOCK_EX);
}
$this->streamWrite($stream, $record);
if ($this->useLocking) {
flock($stream, LOCK_UN);
}
}
/**
* Write to stream
* @param resource $stream
* @param array $record
*
* @phpstan-param FormattedRecord $record
*/
protected function streamWrite($stream, array $record): void
{
fwrite($stream, (string) $record['formatted']);
}
private function customErrorHandler(int $code, string $msg): bool
{
Arguments
stream resource @185
timed_out: false
blocked: true
eof: false
wrapper_type: "plainfile"
stream_type: "STDIO"
mode: "a"
unread_bytes: 0
seekable: true
uri: "/home/sulayici/app_sulayici/storage/logs/laravel.log"
options: []
}
array:8 [
"message" => "Unable to create configured logger. Using emergency logger."
"context" => array:1 [
"exception" => Error {#35
#message: "Class "Illuminate\Support\Collection" not found"
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php"
#line: 110
}
]
"level" => 600
"level_name" => "EMERGENCY"
"channel" => "laravel"
"datetime" => Monolog\DateTimeImmutable @1750024965 {#57
-useMicroseconds: true
date: 2025-06-15 22:02:45.718223 UTC (+00:00)
}
"extra" => []
"formatted" => """
[2025-06-15 22:02:45] laravel.EMERGENCY: Unable to create configured logger. Using emergency logger. {"exception":"[object] (Error(code: 0): Class \"Illuminate\\Support\\Collection\" not found at /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php:110)\n
[stacktrace]\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(240): collect(Array)\n
#1 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(202): Illuminate\\Log\\LogManager->createStackDriver(Array)\n
#2 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(118): Illuminate\\Log\\LogManager->resolve('stack')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(98): Illuminate\\Log\\LogManager->get('stack')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(547): Illuminate\\Log\\LogManager->driver()\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(123): Illuminate\\Log\\LogManager->error('During inherita...', Array)\n
#6 /home/sulayici/app_sulayici/app/Exceptions/Handler.php(39): Illuminate\\Foundation\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(88): App\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(130): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleException(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#9 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleShutdown()\n
#10 {main}\n
"} \n
"""
]
/home/sulayici/app_sulayici/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php
use ProcessableHandlerTrait;
use FormattableHandlerTrait;
/**
* {@inheritDoc}
*/
public function handle(array $record): bool
{
if (!$this->isHandling($record)) {
return false;
}
if ($this->processors) {
/** @var Record $record */
$record = $this->processRecord($record);
}
$record['formatted'] = $this->getFormatter()->format($record);
$this->write($record);
return false === $this->bubble;
}
/**
* Writes the record down to the log of the implementing handler
*
* @phpstan-param FormattedRecord $record
*/
abstract protected function write(array $record): void;
/**
* @return void
*/
public function reset()
{
parent::reset();
$this->resetProcessors();
}
Arguments
array:8 [
"message" => "Unable to create configured logger. Using emergency logger."
"context" => array:1 [
"exception" => Error {#35
#message: "Class "Illuminate\Support\Collection" not found"
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php"
#line: 110
}
]
"level" => 600
"level_name" => "EMERGENCY"
"channel" => "laravel"
"datetime" => Monolog\DateTimeImmutable @1750024965 {#57
-useMicroseconds: true
date: 2025-06-15 22:02:45.718223 UTC (+00:00)
}
"extra" => []
"formatted" => """
[2025-06-15 22:02:45] laravel.EMERGENCY: Unable to create configured logger. Using emergency logger. {"exception":"[object] (Error(code: 0): Class \"Illuminate\\Support\\Collection\" not found at /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php:110)\n
[stacktrace]\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(240): collect(Array)\n
#1 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(202): Illuminate\\Log\\LogManager->createStackDriver(Array)\n
#2 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(118): Illuminate\\Log\\LogManager->resolve('stack')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(98): Illuminate\\Log\\LogManager->get('stack')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(547): Illuminate\\Log\\LogManager->driver()\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(123): Illuminate\\Log\\LogManager->error('During inherita...', Array)\n
#6 /home/sulayici/app_sulayici/app/Exceptions/Handler.php(39): Illuminate\\Foundation\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(88): App\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(130): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleException(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#9 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleShutdown()\n
#10 {main}\n
"} \n
"""
]
/home/sulayici/app_sulayici/vendor/monolog/monolog/src/Monolog/Logger.php
'level_name' => $levelName,
'channel' => $this->name,
'datetime' => new DateTimeImmutable($this->microsecondTimestamps, $this->timezone),
'extra' => [],
];
try {
foreach ($this->processors as $processor) {
$record = $processor($record);
}
} catch (Throwable $e) {
$this->handleException($e, $record);
return true;
}
}
// once the record exists, send it to all handlers as long as the bubbling chain is not interrupted
try {
if (true === $handler->handle($record)) {
break;
}
} catch (Throwable $e) {
$this->handleException($e, $record);
return true;
}
}
return null !== $record;
}
/**
* Ends a log cycle and frees all resources used by handlers.
*
* Closing a Handler means flushing all buffers and freeing any open resources/handles.
* Handlers that have been closed should be able to accept log records again and re-open
* themselves on demand, but this may not always be possible depending on implementation.
*
* This is useful at the end of a request and will be called automatically on every handler
Arguments
array:8 [
"message" => "Unable to create configured logger. Using emergency logger."
"context" => array:1 [
"exception" => Error {#35
#message: "Class "Illuminate\Support\Collection" not found"
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php"
#line: 110
}
]
"level" => 600
"level_name" => "EMERGENCY"
"channel" => "laravel"
"datetime" => Monolog\DateTimeImmutable @1750024965 {#57
-useMicroseconds: true
date: 2025-06-15 22:02:45.718223 UTC (+00:00)
}
"extra" => []
"formatted" => """
[2025-06-15 22:02:45] laravel.EMERGENCY: Unable to create configured logger. Using emergency logger. {"exception":"[object] (Error(code: 0): Class \"Illuminate\\Support\\Collection\" not found at /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php:110)\n
[stacktrace]\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(240): collect(Array)\n
#1 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(202): Illuminate\\Log\\LogManager->createStackDriver(Array)\n
#2 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(118): Illuminate\\Log\\LogManager->resolve('stack')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(98): Illuminate\\Log\\LogManager->get('stack')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php(547): Illuminate\\Log\\LogManager->driver()\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(123): Illuminate\\Log\\LogManager->error('During inherita...', Array)\n
#6 /home/sulayici/app_sulayici/app/Exceptions/Handler.php(39): Illuminate\\Foundation\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(88): App\\Exceptions\\Handler->report(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(130): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleException(Object(Symfony\\Component\\ErrorHandler\\Error\\FatalError))\n
#9 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleShutdown()\n
#10 {main}\n
"} \n
"""
]
/home/sulayici/app_sulayici/vendor/monolog/monolog/src/Monolog/Logger.php
*
* @param string|Stringable $message The log message
* @param mixed[] $context The log context
*/
public function alert($message, array $context = []): void
{
$this->addRecord(static::ALERT, (string) $message, $context);
}
/**
* Adds a log record at the EMERGENCY level.
*
* This method allows for compatibility with common interfaces.
*
* @param string|Stringable $message The log message
* @param mixed[] $context The log context
*/
public function emergency($message, array $context = []): void
{
$this->addRecord(static::EMERGENCY, (string) $message, $context);
}
/**
* Sets the timezone to be used for the timestamp of log records.
*/
public function setTimezone(DateTimeZone $tz): self
{
$this->timezone = $tz;
return $this;
}
/**
* Returns the timezone to be used for the timestamp of log records.
*/
public function getTimezone(): DateTimeZone
{
return $this->timezone;
}
Arguments
600
"Unable to create configured logger. Using emergency logger."
array:1 [
"exception" => Error {#35
#message: "Class "Illuminate\Support\Collection" not found"
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php"
#line: 110
}
]
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/Logger.php
* @param string $message
* @param array $context
* @return void
*/
public function write($level, $message, array $context = [])
{
$this->writeLog($level, $message, $context);
}
/**
* Write a message to the log.
*
* @param string $level
* @param string $message
* @param array $context
* @return void
*/
protected function writeLog($level, $message, $context)
{
$this->logger->{$level}($message = $this->formatMessage($message), $context);
$this->fireLogEvent($level, $message, $context);
}
/**
* Register a new callback handler for when a log event is triggered.
*
* @param \Closure $callback
* @return void
*
* @throws \RuntimeException
*/
public function listen(Closure $callback)
{
if (! isset($this->dispatcher)) {
throw new RuntimeException('Events dispatcher has not been set.');
}
$this->dispatcher->listen(MessageLogged::class, $callback);
}
Arguments
"Unable to create configured logger. Using emergency logger."
array:1 [
"exception" => Error {#35
#message: "Class "Illuminate\Support\Collection" not found"
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php"
#line: 110
}
]
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/Logger.php
* @param \Psr\Log\LoggerInterface $logger
* @param \Illuminate\Contracts\Events\Dispatcher|null $dispatcher
* @return void
*/
public function __construct(LoggerInterface $logger, Dispatcher $dispatcher = null)
{
$this->logger = $logger;
$this->dispatcher = $dispatcher;
}
/**
* Log an emergency message to the logs.
*
* @param string $message
* @param array $context
* @return void
*/
public function emergency($message, array $context = [])
{
$this->writeLog(__FUNCTION__, $message, $context);
}
/**
* Log an alert message to the logs.
*
* @param string $message
* @param array $context
* @return void
*/
public function alert($message, array $context = [])
{
$this->writeLog(__FUNCTION__, $message, $context);
}
/**
* Log a critical message to the logs.
*
* @param string $message
* @param array $context
* @return void
Arguments
"emergency"
"Unable to create configured logger. Using emergency logger."
array:1 [
"exception" => Error {#35
#message: "Class "Illuminate\Support\Collection" not found"
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php"
#line: 110
}
]
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php
{
return $this->channels;
}
/**
* Attempt to get the log from the local cache.
*
* @param string $name
* @return \Psr\Log\LoggerInterface
*/
protected function get($name)
{
try {
return $this->channels[$name] ?? with($this->resolve($name), function ($logger) use ($name) {
return $this->channels[$name] = $this->tap($name, new Logger($logger, $this->app['events']));
});
} catch (Throwable $e) {
return tap($this->createEmergencyLogger(), function ($logger) use ($e) {
$logger->emergency('Unable to create configured logger. Using emergency logger.', [
'exception' => $e,
]);
});
}
}
/**
* Apply the configured taps for the logger.
*
* @param string $name
* @param \Illuminate\Log\Logger $logger
* @return \Illuminate\Log\Logger
*/
protected function tap($name, Logger $logger)
{
foreach ($this->configurationFor($name)['tap'] ?? [] as $tap) {
[$class, $arguments] = $this->parseTap($tap);
$this->app->make($class)->__invoke($logger, ...explode(',', $arguments));
}
Arguments
"Unable to create configured logger. Using emergency logger."
array:1 [
"exception" => Error {#35
#message: "Class "Illuminate\Support\Collection" not found"
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php"
#line: 110
}
]
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php
goto beginning;
}
}
}
if (! function_exists('tap')) {
/**
* Call the given Closure with the given value then return the value.
*
* @param mixed $value
* @param callable|null $callback
* @return mixed
*/
function tap($value, $callback = null)
{
if (is_null($callback)) {
return new HigherOrderTapProxy($value);
}
$callback($value);
return $value;
}
}
if (! function_exists('throw_if')) {
/**
* Throw the given exception if the given condition is true.
*
* @param mixed $condition
* @param \Throwable|string $exception
* @param array ...$parameters
* @return mixed
*
* @throws \Throwable
*/
function throw_if($condition, $exception, ...$parameters)
{
if ($condition) {
throw (is_string($exception) ? new $exception(...$parameters) : $exception);
Arguments
Illuminate\Log\Logger {#37}
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php
}
/**
* Attempt to get the log from the local cache.
*
* @param string $name
* @return \Psr\Log\LoggerInterface
*/
protected function get($name)
{
try {
return $this->channels[$name] ?? with($this->resolve($name), function ($logger) use ($name) {
return $this->channels[$name] = $this->tap($name, new Logger($logger, $this->app['events']));
});
} catch (Throwable $e) {
return tap($this->createEmergencyLogger(), function ($logger) use ($e) {
$logger->emergency('Unable to create configured logger. Using emergency logger.', [
'exception' => $e,
]);
});
}
}
/**
* Apply the configured taps for the logger.
*
* @param string $name
* @param \Illuminate\Log\Logger $logger
* @return \Illuminate\Log\Logger
*/
protected function tap($name, Logger $logger)
{
foreach ($this->configurationFor($name)['tap'] ?? [] as $tap) {
[$class, $arguments] = $this->parseTap($tap);
$this->app->make($class)->__invoke($logger, ...explode(',', $arguments));
}
return $logger;
}
Arguments
Illuminate\Log\Logger {#37}
Closure($logger) {#56 …4}
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php
/**
* Get a log channel instance.
*
* @param string|null $channel
* @return \Psr\Log\LoggerInterface
*/
public function channel($channel = null)
{
return $this->driver($channel);
}
/**
* Get a log driver instance.
*
* @param string|null $driver
* @return \Psr\Log\LoggerInterface
*/
public function driver($driver = null)
{
return $this->get($driver ?? $this->getDefaultDriver());
}
/**
* @return array
*/
public function getChannels()
{
return $this->channels;
}
/**
* Attempt to get the log from the local cache.
*
* @param string $name
* @return \Psr\Log\LoggerInterface
*/
protected function get($name)
{
try {
return $this->channels[$name] ?? with($this->resolve($name), function ($logger) use ($name) {
Arguments
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Log/LogManager.php
*
* @return void
*/
public function critical($message, array $context = [])
{
$this->driver()->critical($message, $context);
}
/**
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function error($message, array $context = [])
{
$this->driver()->error($message, $context);
}
/**
* Exceptional occurrences that are not errors.
*
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
* @param string $message
* @param array $context
*
* @return void
*/
public function warning($message, array $context = [])
{
$this->driver()->warning($message, $context);
}
/**
* Normal but significant events.
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php
}
if (Reflector::isCallable($reportCallable = [$e, 'report'])) {
$this->container->call($reportCallable);
return;
}
try {
$logger = $this->container->make(LoggerInterface::class);
} catch (Exception $ex) {
throw $e;
}
$logger->error(
$e->getMessage(),
array_merge(
$this->exceptionContext($e),
$this->context(),
['exception' => $e]
)
);
}
/**
* Determine if the exception should be reported.
*
* @param \Throwable $e
* @return bool
*/
public function shouldReport(Throwable $e)
{
return ! $this->shouldntReport($e);
}
/**
* Determine if the exception is in the "do not report" list.
*
* @param \Throwable $e
* @return bool
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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
array:1 [
"exception" => Symfony\Component\ErrorHandler\Error\FatalError {#41
#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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
#line: 11
-error: array:4 [
"type" => 1
"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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
"file" => "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
"line" => 11
]
}
]
/home/sulayici/app_sulayici/app/Exceptions/Handler.php
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
* Report or log an exception.
*
* @param \Throwable $exception
* @return void
*
* @throws \Throwable
*/
public function report(Throwable $exception)
{
parent::report($exception);
}
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Throwable $exception
* @return \Symfony\Component\HttpFoundation\Response
*
* @throws \Throwable
*/
public function render($request, Throwable $exception)
{
return parent::render($request, $exception);
}
}
Arguments
Symfony\Component\ErrorHandler\Error\FatalError {#41
#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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
#line: 11
-error: array:4 [
"type" => 1
"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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
"file" => "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
"line" => 11
]
}
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
throw new ErrorException($message, 0, $level, $file, $line);
}
}
/**
* Handle an uncaught exception from the application.
*
* Note: Most exceptions can be handled via the try / catch block in
* the HTTP and Console kernels. But, fatal error exceptions must
* be handled differently since they are not normal exceptions.
*
* @param \Throwable $e
* @return void
*/
public function handleException(Throwable $e)
{
try {
self::$reservedMemory = null;
$this->getExceptionHandler()->report($e);
} catch (Exception $e) {
//
}
if ($this->app->runningInConsole()) {
$this->renderForConsole($e);
} else {
$this->renderHttpResponse($e);
}
}
/**
* Render an exception to the console.
*
* @param \Throwable $e
* @return void
*/
protected function renderForConsole(Throwable $e)
{
$this->getExceptionHandler()->renderForConsole(new ConsoleOutput, $e);
Arguments
Symfony\Component\ErrorHandler\Error\FatalError {#41
#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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
#line: 11
-error: array:4 [
"type" => 1
"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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
"file" => "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
"line" => 11
]
}
/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php
/**
* Render an exception as an HTTP response and send it.
*
* @param \Throwable $e
* @return void
*/
protected function renderHttpResponse(Throwable $e)
{
$this->getExceptionHandler()->render($this->app['request'], $e)->send();
}
/**
* Handle the PHP shutdown event.
*
* @return void
*/
public function handleShutdown()
{
if (! is_null($error = error_get_last()) && $this->isFatal($error['type'])) {
$this->handleException($this->fatalErrorFromPhpError($error, 0));
}
}
/**
* Create a new fatal error instance from an error array.
*
* @param array $error
* @param int|null $traceOffset
* @return \Symfony\Component\ErrorHandler\Error\FatalError
*/
protected function fatalErrorFromPhpError(array $error, $traceOffset = null)
{
return new FatalError($error['message'], 0, $error, $traceOffset);
}
/**
* Determine if the error type is fatal.
*
* @param int $type
* @return bool
Arguments
Symfony\Component\ErrorHandler\Error\FatalError {#41
#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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
#code: 0
#file: "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
#line: 11
-error: array:4 [
"type" => 1
"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/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php:1349\n
Stack trace:\n
#0 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php(11): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(8192, 'Return type of ...', '/home/sulayici/...', 1349)\n
#1 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(480): include('/home/sulayici/...')\n
#2 /home/sulayici/app_sulayici/vendor/composer/ClassLoader.php(346): Composer\Autoload\includeFile('/home/sulayici/...')\n
#3 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/helpers.php(110): Composer\Autoload\ClassLoader->loadClass('Illuminate\\Supp...')\n
#4 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(89): collect(Array)\n
#5 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php(78): Illuminate\Foundation\PackageManifest->config('aliases')\n
#6 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php(26): Illuminate\Foundation\PackageManifest->aliases()\n
#7 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(230): Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap(Object(Illuminate\Foundation\Application))\n
#8 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(151): Illuminate\Foundation\Application->bootstrapWith(Array)\n
#9 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(135): Illuminate\Foundation\Http\Kernel->bootstrap()\n
#10 /home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(109): Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(Object(Illuminate\Http\Request))\n
#11 /home/sulayici/public_html/index.php(61): Illuminate\Foundation\Http\Kernel->handle(Object(Illuminate\Http\Request))\n
#12 {main}
"""
"file" => "/home/sulayici/app_sulayici/vendor/laravel/framework/src/Illuminate/Support/Collection.php"
"line" => 11
]
}