| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class ProfileFlatItem extends Component |
||
| 8 | { |
||
| 9 | public $badge; |
||
| 10 | public $title; |
||
| 11 | public $text; |
||
| 12 | public $url; |
||
| 13 | |||
| 14 | public function __construct($badge = 'info', $title, $text, $url = '#') |
||
| 15 | { |
||
| 16 | $this->badge = $badge; |
||
| 17 | $this->title = $title; |
||
| 18 | $this->text = $text; |
||
| 19 | $this->url = $url; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function render() |
||
| 25 | } |
||
| 26 | } |
||
| 27 |