From e63dff26eae6af9093f03d9b19d727eed7587101 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=CC=81s=CC=8C=20Tatarko?= Date: Wed, 13 Nov 2013 21:37:04 +0100 Subject: [PATCH] Filled second argument for __callStatic() --- src/Monolog/Logger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monolog/Logger.php b/src/Monolog/Logger.php index e0b1650c..d3af1024 100644 --- a/src/Monolog/Logger.php +++ b/src/Monolog/Logger.php @@ -159,7 +159,7 @@ class Logger implements LoggerInterface * @return Monolog\Logger * @throws InvalidArgumentException If logging channel has not been created */ - public static function __callStatic($name) + public static function __callStatic($name, $arguments) { if(!isset(self::$loggerInstances[$name])) { throw new \InvalidArgumentException('The requested logging channel has not been created yet');