Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

Cache

8 Total calls
0.05 ms Total time
4 Total reads
4 Total writes
0 Total deletes
0 Total hits
4 Total misses
0 % Hits/reads

Pools

Adapter

Symfony\Component\Cache\Adapter\ArrayAdapter

Metrics

8 Calls
0.05 ms Time
4 Reads
4 Writes
0 Deletes
0 Hits
4 Misses
0 % Hits/reads

Calls

# Time Call Hit
1 0.00 ms getItem()
0 of 0
[â–Ľ "4a4286d8a7b1fc6d973e25642a041b3c" => false ]
2 0.01 ms save()
0 of 0
[â–Ľ "4a4286d8a7b1fc6d973e25642a041b3c" => true ]
3 0.00 ms getItem()
0 of 0
[â–Ľ "165dd6a560c9149256387582d6588199" => false ]
4 0.01 ms save()
0 of 0
[â–Ľ "165dd6a560c9149256387582d6588199" => true ]
5 0.00 ms getItem()
0 of 0
[â–Ľ "b9f1fb905cfdfe03c1cb1b66c7605b15" => false ]
6 0.01 ms save()
0 of 0
[â–Ľ "b9f1fb905cfdfe03c1cb1b66c7605b15" => true ]
7 0.00 ms getItem()
0 of 0
[â–Ľ "fc49bb7e59e96eca802c24d70ea47afb" => false ]
8 0.01 ms save()
0 of 0
[â–Ľ "fc49bb7e59e96eca802c24d70ea47afb" => true ]
Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded

ErrorException

Show exception properties
0 of 0
ErrorException {#2157 â–Ľ #severity: E_NOTICE }
  1.      * Write to stream
  2.      * @param resource $stream
  3.      */
  4.     protected function streamWrite($streamLogRecord $record): void
  5.     {
  6.         fwrite($stream, (string) $record->formatted);
  7.     }
  8.     private function customErrorHandler(int $codestring $msg): bool
  9.     {
  10.         $this->errorMessage preg_replace('{^(fopen|mkdir)\(.*?\): }'''$msg);
  1.         if ($this->useLocking) {
  2.             // ignoring errors here, there's not much we can do about them
  3.             flock($streamLOCK_EX);
  4.         }
  5.         $this->streamWrite($stream$record);
  6.         if ($this->useLocking) {
  7.             flock($streamLOCK_UN);
  8.         }
  9.     }
  1.             $record $this->processRecord($record);
  2.         }
  3.         $record->formatted $this->getFormatter()->format($record);
  4.         $this->write($record);
  5.         return false === $this->bubble;
  6.     }
  7.     /**
  1.                 }
  2.                 // once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted
  3.                 try {
  4.                     $handled true;
  5.                     if (true === $handler->handle(clone $record)) {
  6.                         break;
  7.                     }
  8.                 } catch (Throwable $e) {
  9.                     $this->handleException($e$record);
  1.      * @param string|Stringable $message The log message
  2.      * @param mixed[]           $context The log context
  3.      */
  4.     public function info(string|\Stringable $message, array $context = []): void
  5.     {
  6.         $this->addRecord(Level::Info, (string) $message$context);
  7.     }
  8.     /**
  9.      * Adds a log record at the NOTICE level.
  10.      *
  1.         $this->logger $logger;
  2.     }
  3.     public function __destruct()
  4.     {
  5.         $this->logger->info('Disconnecting');
  6.     }
  7.     public function prepare(string $sql): DriverStatement
  8.     {
  9.         return new Statement(
Connection->__destruct()