Skip to content

Commit abcbbb7

Browse files
committed
fixed #175 DotEnvConfiguration null object access.
1 parent 3a6879f commit abcbbb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JiraClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ public function __construct(ConfigurationInterface $configuration = null, Logger
8787
} else {
8888
$this->log = new Logger('JiraClient');
8989
$this->log->pushHandler(new StreamHandler(
90-
$configuration->getJiraLogFile(),
91-
$this->convertLogLevel($configuration->getJiraLogLevel())
90+
$this->configuration->getJiraLogFile(),
91+
$this->convertLogLevel($this->configuration->getJiraLogLevel())
9292
));
9393
}
9494

0 commit comments

Comments
 (0)