Skip to content

Commit fec8c5d

Browse files
committed
formatting
1 parent 69a95de commit fec8c5d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/Illuminate/Log/LogManager.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,17 @@ public function __construct($app)
6161
$this->app = $app;
6262
}
6363

64+
/**
65+
* Build an on-demand log channel.
66+
*
67+
* @param array $config
68+
* @return \Psr\Log\LoggerInterface
69+
*/
70+
public function build(array $config)
71+
{
72+
return $this->get('ondemand', $config);
73+
}
74+
6475
/**
6576
* Create a new, on-demand aggregate logger instance.
6677
*
@@ -636,17 +647,6 @@ public function log($level, $message, array $context = [])
636647
$this->driver()->log($level, $message, $context);
637648
}
638649

639-
/**
640-
* Build an on-demand channel.
641-
*
642-
* @param array $config
643-
* @return \Psr\Log\LoggerInterface
644-
*/
645-
public function build(array $config)
646-
{
647-
return $this->get('ondemand', $config);
648-
}
649-
650650
/**
651651
* Dynamically call the default driver instance.
652652
*

0 commit comments

Comments
 (0)