Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
50.00% |
1 / 2 |
|
50.00% |
1 / 2 |
CRAP | |
0.00% |
0 / 1 |
| RichText | |
50.00% |
1 / 2 |
|
50.00% |
1 / 2 |
2.50 | |
0.00% |
0 / 1 |
| value | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| structure | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Cosray\Field; |
| 6 | |
| 7 | use Cosray\Value\RichText as RichTextValue; |
| 8 | |
| 9 | class RichText extends Text |
| 10 | { |
| 11 | public function value(): RichTextValue |
| 12 | { |
| 13 | return new RichTextValue($this->owner, $this, $this->valueContext); |
| 14 | } |
| 15 | |
| 16 | public function structure(mixed $value = null): array |
| 17 | { |
| 18 | return $this->getTranslatableStructure('richtext', $value); |
| 19 | } |
| 20 | } |