mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-05 12:47:39 +02:00
Make PHP5.3 compatible
This commit is contained in:
@@ -30,10 +30,10 @@ class IntrospectionProcessor
|
||||
|
||||
private $skipClassesPartials;
|
||||
|
||||
public function __construct($level = Logger::DEBUG, array $skipClassesPartials = [])
|
||||
public function __construct($level = Logger::DEBUG, array $skipClassesPartials = array())
|
||||
{
|
||||
$this->level = Logger::toMonologLevel($level);
|
||||
$this->skipClassesPartials = array_merge(array['Monolog\\'], $skipClassesPartials);
|
||||
$this->skipClassesPartials = array_merge(array('Monolog\\'), $skipClassesPartials);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user