User::getUin()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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