Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| FullViewEntitySchemaData | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | declare( strict_types = 1 ); |
| 4 | |
| 5 | namespace EntitySchema\Services\Converter; |
| 6 | |
| 7 | /** |
| 8 | * @license GPL-2.0-or-later |
| 9 | */ |
| 10 | class FullViewEntitySchemaData { |
| 11 | |
| 12 | /** @var NameBadge[] */ |
| 13 | public array $nameBadges; |
| 14 | |
| 15 | public string $schemaText; |
| 16 | |
| 17 | public function __construct( array $nameBadges, string $schemaText ) { |
| 18 | $this->nameBadges = $nameBadges; |
| 19 | $this->schemaText = $schemaText; |
| 20 | } |
| 21 | |
| 22 | } |