Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
DaoTrait | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\Core\Database; |
6 | |
7 | use PeServer\Core\Database\IDatabaseContext; |
8 | use PeServer\Core\Log\ILogger; |
9 | use PeServer\Core\Log\Logging; |
10 | use PeServer\Core\Log\NullLogger; |
11 | |
12 | trait DaoTrait |
13 | { |
14 | public function __construct( |
15 | IDatabaseContext $context |
16 | ) { |
17 | parent::__construct($context); |
18 | } |
19 | } |