Skip to content

Commit

Permalink
Fix missing renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Rumpel committed Feb 2, 2018
1 parent 394a7e7 commit 64aa3ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ChatbotAI.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace App;

use Monolog\Logger;
use Dialogflow\Client;
use DialogFlow\Client;
use Monolog\Handler\StreamHandler;

class ChatbotAI
Expand Down Expand Up @@ -31,7 +31,7 @@ public function __construct($config)
$this->config = $config;
$this->log = new Logger('general');
$this->log->pushHandler(new StreamHandler('debug.log'));
$this->apiClient = new Client($this->config['apiai_token']);
$this->apiClient = new Client($this->config['dialogflow_token']);
$this->witClient = new \Tgallice\Wit\Client($this->config['witai_token']);
$this->foreignExchangeRate = new ForeignExchangeRate();
}
Expand Down

0 comments on commit 64aa3ef

Please sign in to comment.