-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnvironmentConfig.php
More file actions
48 lines (41 loc) · 884 Bytes
/
EnvironmentConfig.php
File metadata and controls
48 lines (41 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
namespace Wearesho\Bobra\Platon;
use Horat1us\Environment;
class EnvironmentConfig extends Environment\Config implements ConfigInterface
{
/**
* @inheritdoc
*/
public function getKey(): string
{
return $this->getEnv('PLATON_KEY');
}
/**
* @inheritdoc
*/
public function getPass(): string
{
return $this->getEnv('PLATON_PASS');
}
/**
* @inheritdoc
*/
public function getPayment(): string
{
return $this->getEnv('PLATON_PAYMENT', 'CC');
}
/**
* @inheritdoc
*/
public function getBaseUrl(): string
{
return $this->getEnv('PLATON_URL', ConfigInterface::PAYMENT_URL);
}
/**
* @inheritdoc
*/
public function getLanguage(): string
{
return $this->getEnv('PLATON_LANGUAGE', ConfigInterface::LANGUAGE_UA);
}
}