Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 3 |
EntitySchema\Services\SchemaConverter\FullViewSchemaData | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
namespace EntitySchema\Services\SchemaConverter; | |
/** | |
* @license GPL-2.0-or-later | |
*/ | |
class FullViewSchemaData { | |
/** @var NameBadge[] */ | |
public $nameBadges; | |
/** @var string */ | |
public $schemaText; | |
public function __construct( array $nameBadges, $schemaText ) { | |
$this->nameBadges = $nameBadges; | |
$this->schemaText = $schemaText; | |
} | |
} |