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
2namespace Apie\HtmlBuilders\Interfaces;
3
4use Apie\HtmlBuilders\FieldDisplayBuildContext;
5use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag;
6
7#[AutoconfigureTag(FieldDisplayComponentProviderInterface::class)]
8interface FieldDisplayComponentProviderInterface
9{
10    public function supports(mixed $object, FieldDisplayBuildContext $context): bool;
11    public function createComponentFor(mixed $object, FieldDisplayBuildContext $context): ComponentInterface;
12}