Skip to content

Commit

Permalink
Merge branch 'logging' of github.com:laravel/framework into logging
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jan 4, 2018
2 parents a9fa1bf + db4c690 commit b29f7ba
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Illuminate/Log/LogManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,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);
}
Expand All @@ -403,7 +403,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);
}
Expand All @@ -418,7 +418,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);
}
Expand All @@ -432,7 +432,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);
}
Expand All @@ -448,7 +448,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);
}
Expand All @@ -461,7 +461,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);
}
Expand All @@ -476,7 +476,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);
}
Expand All @@ -489,7 +489,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);
}
Expand All @@ -503,7 +503,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);
}
Expand Down

0 comments on commit b29f7ba

Please sign in to comment.