Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
LinkDisplay
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\HtmlBuilders\Components\Resource\FieldDisplay;
3
4use Apie\HtmlBuilders\Components\BaseComponent;
5
6class LinkDisplay extends BaseComponent
7{
8    public function __construct(string $contents, string $link)
9    {
10        parent::__construct([
11            'contents' => $contents,
12            'link' => $link,
13        ]);
14    }
15}