Completed
Push — master ( 544bdf...d3e666 )
by Askupa
01:56
created

AddField.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Amarkal\Taxonomy;
4
5
class AddField
0 ignored issues
show
There is one abstract method get_script_path in this class; you could implement it, or declare this class as abstract.
Loading history...
6
extends \Amarkal\UI\AbstractComponent
7
{
8
    public function default_model() 
9
    {
10
        return array(
11
            'type'          => '',
12
            'label'         => '',
13
            'description'   => ''
14
        );
15
    }
16
    
17
    public function get_template_path() 
18
    {
19
        return __DIR__.'/AddField.phtml';
20
    }
21
}