Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| Ics | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| getContent | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace BO\Zmsentities; |
| 4 | |
| 5 | class Ics extends Schema\Entity |
| 6 | { |
| 7 | public const PRIMARY = 'content'; |
| 8 | |
| 9 | public static $schema = "ics.json"; |
| 10 | |
| 11 | public function getContent() |
| 12 | { |
| 13 | return $this->content; |
| 14 | } |
| 15 | } |