From db4c6907e267a5ba9897bc90e0fcac75ff894d2c Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 4 Jan 2018 12:21:32 -0600 Subject: [PATCH] Apply fixes from StyleCI (#22634) --- src/Illuminate/Log/LogManager.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Illuminate/Log/LogManager.php b/src/Illuminate/Log/LogManager.php index 74989560cd1c..b2c8d83a3ba6 100644 --- a/src/Illuminate/Log/LogManager.php +++ b/src/Illuminate/Log/LogManager.php @@ -407,7 +407,7 @@ public function extend($driver, Closure $callback) * * @return void */ - public function emergency($message, array $context = array()) + public function emergency($message, array $context = []) { return $this->driver()->emergency($message, $context); } @@ -423,7 +423,7 @@ public function emergency($message, array $context = array()) * * @return void */ - public function alert($message, array $context = array()) + public function alert($message, array $context = []) { return $this->driver()->alert($message, $context); } @@ -438,7 +438,7 @@ public function alert($message, array $context = array()) * * @return void */ - public function critical($message, array $context = array()) + public function critical($message, array $context = []) { return $this->driver()->critical($message, $context); } @@ -452,7 +452,7 @@ public function critical($message, array $context = array()) * * @return void */ - public function error($message, array $context = array()) + public function error($message, array $context = []) { return $this->driver()->error($message, $context); } @@ -468,7 +468,7 @@ public function error($message, array $context = array()) * * @return void */ - public function warning($message, array $context = array()) + public function warning($message, array $context = []) { return $this->driver()->warning($message, $context); } @@ -481,7 +481,7 @@ public function warning($message, array $context = array()) * * @return void */ - public function notice($message, array $context = array()) + public function notice($message, array $context = []) { return $this->driver()->notice($message, $context); } @@ -496,7 +496,7 @@ public function notice($message, array $context = array()) * * @return void */ - public function info($message, array $context = array()) + public function info($message, array $context = []) { return $this->driver()->info($message, $context); } @@ -509,7 +509,7 @@ public function info($message, array $context = array()) * * @return void */ - public function debug($message, array $context = array()) + public function debug($message, array $context = []) { return $this->driver()->debug($message, $context); } @@ -523,7 +523,7 @@ public function debug($message, array $context = array()) * * @return void */ - public function log($level, $message, array $context = array()) + public function log($level, $message, array $context = []) { return $this->driver()->log($message, $context); }