Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct(Client $client) |
||
19 | { |
||
20 | $this->client = $client; |
||
21 | $storageSecret = Environment::getEnv('MONITORING_STORAGE_SECRET'); |
||
22 | $storageSalt = Environment::getEnv('MONITORING_STORAGE_SALT'); |
||
23 | $this->encHelper = new EncryptionHelper($storageSecret, $storageSalt); |
||
24 | } |
||
66 |