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\FormBuildContext; |
| 5 | use ReflectionType; |
| 6 | |
| 7 | interface FormComponentProviderInterface |
| 8 | { |
| 9 | public function supports(ReflectionType $type, FormBuildContext $context): bool; |
| 10 | public function createComponentFor(ReflectionType $type, FormBuildContext $context): ComponentInterface; |
| 11 | } |