Completed
Push — master ( 88fae4...fdf1a5 )
by Askupa
01:52
created

AddField::get_script_path()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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
}