upgraded dependencies
This commit is contained in:
@@ -27,20 +27,16 @@ interface DebugLoggerInterface
|
||||
* timestamp, message, priority, and priorityName.
|
||||
* It can also have an optional context key containing an array.
|
||||
*
|
||||
* @param Request|null $request The request to get logs for
|
||||
*
|
||||
* @return array An array of logs
|
||||
* @return array
|
||||
*/
|
||||
public function getLogs(/* Request $request = null */);
|
||||
public function getLogs(Request $request = null);
|
||||
|
||||
/**
|
||||
* Returns the number of errors.
|
||||
*
|
||||
* @param Request|null $request The request to count logs for
|
||||
*
|
||||
* @return int The number of errors
|
||||
* @return int
|
||||
*/
|
||||
public function countErrors(/* Request $request = null */);
|
||||
public function countErrors(Request $request = null);
|
||||
|
||||
/**
|
||||
* Removes all log records.
|
||||
|
5
vendor/symfony/http-kernel/Log/Logger.php
vendored
5
vendor/symfony/http-kernel/Log/Logger.php
vendored
@@ -35,8 +35,13 @@ class Logger extends AbstractLogger
|
||||
|
||||
private $minLevelIndex;
|
||||
private $formatter;
|
||||
|
||||
/** @var resource|null */
|
||||
private $handle;
|
||||
|
||||
/**
|
||||
* @param string|resource|null $output
|
||||
*/
|
||||
public function __construct(string $minLevel = null, $output = null, callable $formatter = null)
|
||||
{
|
||||
if (null === $minLevel) {
|
||||
|
Reference in New Issue
Block a user