Skip to content

Commit

Permalink
Apply fixes from StyleCI (#22634)
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored Jan 4, 2018
1 parent 549e162 commit db4c690
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 @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand All @@ -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);
}
Expand Down

0 comments on commit db4c690

Please sign in to comment.