User   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 25
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getUin() 0 4 1
A setUin() 0 4 1
1
<?php
2
/*
3
 * This file is part of the slince/smartqq package.
4
 *
5
 * (c) Slince <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Slince\SmartQQ\Entity;
12
13
class User
14
{
15
    /**
16
     * 用户编号.
17
     *
18
     * @var int
19
     */
20
    protected $uin;
21
22
    /**
23
     * @return int
24
     */
25
    public function getUin()
26
    {
27
        return $this->uin;
28
    }
29
30
    /**
31
     * @param int $uin
32
     */
33
    public function setUin($uin)
34
    {
35
        $this->uin = $uin;
36
    }
37
}
38