Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | namespace Apie\HtmlBuilders\Interfaces; |
3 | |
4 | use Apie\HtmlBuilders\FieldDisplayBuildContext; |
5 | use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag; |
6 | |
7 | #[AutoconfigureTag(FieldDisplayComponentProviderInterface::class)] |
8 | interface FieldDisplayComponentProviderInterface |
9 | { |
10 | public function supports(mixed $object, FieldDisplayBuildContext $context): bool; |
11 | public function createComponentFor(mixed $object, FieldDisplayBuildContext $context): ComponentInterface; |
12 | } |