Passed
Pull Request — master (#24)
by Michael
04:54 queued 02:40
created

Stats   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 12
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
1
<?php
2
3
namespace XoopsModules\Tag;
4
5
/*
6
 You may not change or alter any portion of this comment or credits
7
 of supporting developers from this source code or any supporting source code
8
 which is considered copyrighted (c) material of the original comment or credit authors.
9
10
 This program is distributed in the hope that it will be useful,
11
 but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
*/
14
15
/**
16
 * XOOPS tag management module
17
 *
18
 * @package         XoopsModules\Tag
19
 * @copyright       {@link http://sourceforge.net/projects/xoops/ The XOOPS Project}
20
 * @license         {@link http://www.fsf.org/copyleft/gpl.html GNU public license}
21
 * @author          Taiwen Jiang <[email protected]>
22
 * @since           2.34
23
 */
24
25
use XoopsModules\Tag;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, XoopsModules\Tag\Tag. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
26
27
28
29
/**
30
 * Class Stats
31
 */
32
class Stats extends \XoopsObject
33
{
34
    /**
35
     * Constructor
36
     */
37
    public function __construct()
38
    {
39
        $this->initVar('ts_id', \XOBJ_DTYPE_INT, null, false);
40
        $this->initVar('tag_id', \XOBJ_DTYPE_INT, 0);
41
        $this->initVar('tag_modid', \XOBJ_DTYPE_INT, 0);
42
        $this->initVar('tag_catid', \XOBJ_DTYPE_INT, 0);
43
        $this->initVar('tag_count', \XOBJ_DTYPE_INT, 0);
44
    }
45
}
46