Passed
Push — master ( c7b51a...389d67 )
by Joe Nilson
02:04
created
Labels
Severity
1
<?php
2
3
/*
4
 * Copyright (C) 2020 Joe Zegarra.
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;
23
24
use FacturaScripts\Core\Base\InitClass;
0 ignored issues
show
The type FacturaScripts\Core\Base\InitClass was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
use FacturaScripts\Dinamic\Lib\AssetManager;
0 ignored issues
show
The type FacturaScripts\Dinamic\Lib\AssetManager was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
26
use FactuaScripts\Dinamic\Model\Cliente;
0 ignored issues
show
The type FactuaScripts\Dinamic\Model\Cliente was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
27
use FactuaScripts\Dinamic\Model\FacturaCliente;
0 ignored issues
show
The type FactuaScripts\Dinamic\Model\FacturaCliente was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
28
use FactuaScripts\Dinamic\Model\Proveedor;
0 ignored issues
show
The type FactuaScripts\Dinamic\Model\Proveedor was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
29
use FactuaScripts\Dinamic\Model\FacturaProveedor;
0 ignored issues
show
The type FactuaScripts\Dinamic\Model\FacturaProveedor was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
30
use FacturaScripts\Plugins\fsRepublicaDominicana\Model\NCFRango;
31
use FacturaScripts\Plugins\fsRepublicaDominicana\Model\NCFTipo;
32
use FacturaScripts\Plugins\fsRepublicaDominicana\Model\NCFTipoAnulacion;
33
use FacturaScripts\Plugins\fsRepublicaDominicana\Model\NCFTipoMovimiento;
34
use FacturaScripts\Plugins\fsRepublicaDominicana\Model\NCFTipoPago;
35
36
/**
37
 * Description of Init
38
 *
39
 * @author Joe Zegarra
40
 */
41
class Init extends InitClass
42
{
43
    public function init()
44
    {
45
        $this->loadExtension(new Extension\Model\Cliente());
46
        $this->loadExtension(new Extension\Model\FacturaCliente());
47
        $this->loadExtension(new Extension\Model\FacturaProveedor());
48
        $this->loadExtension(new Extension\Model\Producto());
49
        $this->loadExtension(new Extension\Controller\EditCliente());
50
        $this->loadExtension(new Extension\Controller\EditProveedor());
51
        $this->loadExtension(new Extension\Controller\EditFacturaCliente());
52
        $this->loadExtension(new Extension\Controller\EditFacturaProveedor());
53
        AssetManager::add('js', \FS_ROUTE . '/Plugins/fsRepublicaDominicana/Assets/JS/CommonDomFunctions.js');
0 ignored issues
show
The constant FS_ROUTE was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
54
    }
55
    
56
    public function update()
57
    {
58
        new NCFTipoPago();
59
        new NCFTipoAnulacion();
60
        new NCFTipoMovimiento();
61
        new NCFTipo();
62
        new NCFRango();
63
        new Cliente();
64
        new FacturaCliente();
65
        new Proveedor();
66
        new FacturaProveedor();
67
    }
68
}
69