Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
AuthConfig | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | namespace Lggr; |
3 | |
4 | /* |
5 | * @brief Config class for authentication DB access. |
6 | */ |
7 | class AuthConfig extends AbstractConfig { |
8 | |
9 | function __construct() { |
10 | $this->setDbUser('lggrauth'); |
11 | $this->setDbPwd('xxx'); |
12 | $this->setDbName('lggr'); |
13 | $this->setDbHost('mysql'); |
14 | } |
15 | } |