Utility
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 7
c 0
b 0
f 0
wmc 0
1
<?php
2
3
namespace XoopsModules\Mastopgo2;
4
5
/**
6
 * Class Utility
7
 */
8
class Utility
9
{
10
    use Common\VersionChecks; //checkVerXoops, checkVerPhp Traits
0 ignored issues
show
introduced by
The trait XoopsModules\Mastopgo2\Common\VersionChecks requires some properties which are not provided by XoopsModules\Mastopgo2\Utility: $tag_name, $prerelease
Loading history...
11
12
    use Common\ServerStats; // getServerStats Trait
13
14
    use Common\FilesManagement; // Files Management Trait
15
16
    //--------------- Custom module methods -----------------------------
17
}
18