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