Published   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 2
Bugs 1 Features 0
Metric Value
wmc 2
c 2
b 1
f 0
lcom 1
cbo 1
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A show() 0 11 2
1
<?php namespace Mascame\Artificer\Fields\Types;
2
3
class Published extends Checkbox
4
{
5
6
    public function show()
7
    {
8
        if ($this->value) {
9
            ?>
10
            <div class="text-center">
11
                <i class="fa fa-globe" title="Published"></i>
12
            </div>
13
        <?php
14
        }
15
16
    }
17
18
}