EditNCFTipoAnulacion   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 7
c 1
b 0
f 1
dl 0
loc 15
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getModelClassName() 0 3 1
A getPageData() 0 8 1
1
<?php
2
3
/*
4
 * Copyright (C) 2019 joenilson.
5
 *
6
 * This library is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU Lesser General Public
8
 * License as published by the Free Software Foundation; either
9
 * version 3 of the License, or (at your option) any later version.
10
 *
11
 * This library is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * Lesser General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA 02110-1301  USA
20
 */
21
22
namespace FacturaScripts\Plugins\fsRepublicaDominicana\Controller;
23
24
use FacturaScripts\Core\Lib\ExtendedController\EditController;
25
26
/**
27
 * Description of EditNCFTipoAnulacion
28
 *
29
 * @author joenilson
30
 */
31
class EditNCFTipoAnulacion extends EditController
32
{
33
    public function getModelClassName(): string
34
    {
35
        return 'NCFTipoAnulacion';
36
    }
37
38
    public function getPageData(): array
39
    {
40
        $pagedata = parent::getPageData();
41
        $pagedata['menu'] = 'RepublicaDominicana';
42
        $pagedata['title'] = 'edit-ncf-cancellation-type';
43
        $pagedata['icon'] = 'fas fa-tasks';
44
45
        return $pagedata;
46
    }
47
48
}
49