Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| ClassConfig\Annotation\ConfigObject | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| getType | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| <?php | |
| namespace ClassConfig\Annotation; | |
| /** | |
| * Class ConfigObject | |
| * @package ClassConfig\Annotation | |
| * | |
| * @Annotation | |
| */ | |
| class ConfigObject implements ConfigEntryTypeHintInterface | |
| { | |
| /** | |
| * @var string | |
| */ | |
| public $class; | |
| /** | |
| * @inheritDoc | |
| */ | |
| public function getType(): string | |
| { | |
| return $this->class; | |
| } | |
| } |