eventCoreIncludeCommonEnd()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
cc 1
eloc 1
c 2
b 0
f 1
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
/*
3
 You may not change or alter any portion of this comment or credits
4
 of supporting developers from this source code or any supporting source code
5
 which is considered copyrighted (c) material of the original comment or credit authors.
6
7
 This program is distributed in the hope that it will be useful,
8
 but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
*/
11
12
/**
13
 * @copyright       XOOPS Project (https://xoops.org)
14
 * @license         GNU GPL 2 (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
15
 * @author          XOOPS Project <www.xoops.org> <www.xoops.ir>
16
 */
17
\defined('XOOPS_ROOT_PATH') || die('Restricted access.');
18
19
/**
20
 * Class ModulebuilderCorePreload
21
 */
22
class WgsitenoticeCorePreload extends \XoopsPreloadItem
0 ignored issues
show
Bug introduced by
The type XoopsPreloadItem 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...
23
{
24
    // to add PSR-4 autoloader
25
    /**
26
     * @param $args
27
     */
28
    public static function eventCoreIncludeCommonEnd($args)
29
    {
30
        require __DIR__ . '/autoloader.php';
31
    }
32
}
33