Skip to content

Commit a884f59

Browse files
committed
fixed linter
1 parent b7b0afb commit a884f59

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/SplitIO/Component/Initialization/LoggerFactory.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ class LoggerFactory
1818
* @param $options
1919
* @return SplitIO\Component\Log\Logger
2020
*/
21-
private static function setDefaultLogger(array $options) {
21+
private static function setDefaultLogger(array $options)
22+
{
2223
$adapter = (isset($options['adapter'])) ? $options['adapter'] : null;
2324
$level = (isset($options['level'])) ? $options['level'] : null;
2425

@@ -54,7 +55,8 @@ private static function setDefaultLogger(array $options) {
5455
* @param $options
5556
* @return SplitIO\Component\Log\Logger
5657
*/
57-
public static function setupLogger(array $options) {
58+
public static function setupLogger(array $options)
59+
{
5860
if (!isset($options['psr3-instance'])) {
5961
return self::setDefaultLogger($options);
6062
}

0 commit comments

Comments
 (0)