Passed
Push — master ( 756ad9...090462 )
by Michael
28s
created

Link   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 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         tag
19
 * @subpackage      class
20
 * @copyright       {@link http://sourceforge.net/projects/xoops/ The XOOPS Project}
21
 * @license         {@link http://www.fsf.org/copyleft/gpl.html GNU public license}
22
 * @author          Taiwen Jiang <[email protected]>
23
 * @since           1.00
24
 */
25
26
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...
27
28
defined('XOOPS_ROOT_PATH') || die('Restricted access');
29
30
/**
31
 * Class TagLink
32
 */
33
class Link extends \XoopsObject
34
{
35
    /**
36
     * Constructor
37
     */
38
    public function __construct()
39
    {
40
        $this->initVar('tl_id', XOBJ_DTYPE_INT, null, false);
41
        $this->initVar('tag_id', XOBJ_DTYPE_INT, 0);
42
        $this->initVar('tag_modid', XOBJ_DTYPE_INT, 0);
43
        $this->initVar('tag_catid', XOBJ_DTYPE_INT, 0);
44
        $this->initVar('tag_itemid', XOBJ_DTYPE_INT, 0);
45
        $this->initVar('tag_time', XOBJ_DTYPE_INT, 0);
46
    }
47
}
48