update SlackNotifySubscriber.php

This commit is contained in:
Marko
2023-09-29 17:27:50 +02:00
parent 034808cc67
commit 9445ec23ca
3 changed files with 10 additions and 8 deletions

View File

@@ -14,15 +14,19 @@ class Hiltes
protected $current_dir_path;
protected $apiKey;
protected $hiltesApiHash = '';
protected $hiltesUsr = 'admin';
protected $hiltesPass = '1996';
protected $hiltesApiUrl = 'https://api.orangejungle.eu';
protected $hiltesUsr;
protected $hiltesPass;
protected $hiltesApiUrl;
public function __construct()
{
$this->fsObject = new Filesystem();
$this->current_dir_path = getcwd();
$this->hiltesApiUrl = $_ENV['HILTES_API_URL'];
$this->hiltesUsr = $_ENV['HILTES_API_USER'];
$this->hiltesPass = $_ENV['HILTES_API_PASSWORD'];
}