b2pweb /
bdf-form
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Bdf\Form\View; |
||
| 4 | |||
| 5 | /** |
||
| 6 | * Base type for perform the render of a field view |
||
| 7 | * |
||
| 8 | * @template T as FieldViewInterface |
||
| 9 | */ |
||
| 10 | interface FieldViewRendererInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Render the field |
||
| 14 | * |
||
| 15 | * @param T $view Field to render |
||
|
0 ignored issues
–
show
|
|||
| 16 | * @param array $attributes Custom attributes |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function render(FieldViewInterface $view, array $attributes): string; |
||
| 21 | } |
||
| 22 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths