Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
Apiclient | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getDefaults | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace BO\Zmsentities; |
4 | |
5 | class Apiclient extends Schema\Entity |
6 | { |
7 | const PRIMARY = 'clientKey'; |
8 | |
9 | public static $schema = "apiclient.json"; |
10 | |
11 | public function getDefaults() |
12 | { |
13 | return [ |
14 | 'shortname' => 'default', |
15 | ]; |
16 | } |
17 | } |