1
0
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:
Liam Le Brun
2015-07-15 13:31:43 +01:00
parent 09861e1e47
commit 16c83796dd

View File

@@ -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);
}
/**