Completed
Push — master ( fdf1a5...3e5a13 )
by Askupa
01:50
created

AddField   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A get_script_path() 0 4 1
1
<?php
2
3
namespace Amarkal\Taxonomy;
4
5
class AddField
6
extends \Amarkal\UI\AbstractComponent
0 ignored issues
show
Coding Style introduced by
The extends keyword must be on the same line as the class name
Loading history...
7
{
8
    public function get_script_path() 
9
    {
10
        return __DIR__.'/add-field.phtml';
11
    }
12
}