Entity::getClient()   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
use Slince\SmartQQ\Client;
14
15
class Entity
16
{
17
    /**
18
     * @var Client
19
     */
20
    protected $client;
21
22
    /**
23
     * @return Client
24
     */
25
    public function getClient()
26
    {
27
        return $this->client;
28
    }
29
30
    /**
31
     * @param Client $client
32
     */
33
    public function setClient($client)
34
    {
35
        $this->client = $client;
36
    }
37
}
38