mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-16 10:04:14 +02:00
This commit is contained in:
@@ -22,7 +22,6 @@ abstract class provided by Monolog to keep things DRY.
|
||||
<?php
|
||||
|
||||
use Monolog\Level;
|
||||
use Monolog\LevelName;
|
||||
use Monolog\Logger;
|
||||
use Monolog\Handler\AbstractProcessingHandler;
|
||||
|
||||
@@ -32,7 +31,7 @@ class PDOHandler extends AbstractProcessingHandler
|
||||
private PDO $pdo;
|
||||
private PDOStatement $statement;
|
||||
|
||||
public function __construct(PDO $pdo, int|string|Level|LevelName $level = Level::Debug, bool $bubble = true)
|
||||
public function __construct(PDO $pdo, int|string|Level $level = Level::Debug, bool $bubble = true)
|
||||
{
|
||||
$this->pdo = $pdo;
|
||||
parent::__construct($level, $bubble);
|
||||
|
Reference in New Issue
Block a user