From abcbbb7b7cd7f6a5376326c5137b3f7d233ecc25 Mon Sep 17 00:00:00 2001 From: KwangSeob Jeong Date: Thu, 9 Aug 2018 20:42:46 +0900 Subject: [PATCH] fixed #175 DotEnvConfiguration null object access. --- src/JiraClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/JiraClient.php b/src/JiraClient.php index be3ac59c..b462bfb4 100644 --- a/src/JiraClient.php +++ b/src/JiraClient.php @@ -87,8 +87,8 @@ public function __construct(ConfigurationInterface $configuration = null, Logger } else { $this->log = new Logger('JiraClient'); $this->log->pushHandler(new StreamHandler( - $configuration->getJiraLogFile(), - $this->convertLogLevel($configuration->getJiraLogLevel()) + $this->configuration->getJiraLogFile(), + $this->convertLogLevel($this->configuration->getJiraLogLevel()) )); }