Completed
Push — master ( 479fbe...e1e56a )
by WEBEWEB
01:15
created

User::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the pexels-library package.
5
 *
6
 * (c) 2020 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Library\Pexels\Model;
13
14
use WBW\Library\Core\Model\Attribute\IntegerIdTrait;
15
use WBW\Library\Core\Model\Attribute\StringNameTrait;
16
use WBW\Library\Core\Model\Attribute\StringUrlTrait;
17
18
/**
19
 * User.
20
 *
21
 * @author webeweb <https://github.com/webeweb/>
22
 * @package WBW\Library\Pexels\Model
23
 */
24
class User {
25
26
    use IntegerIdTrait {
27
        setId as public;
28
    }
29
    use StringNameTrait;
30
    use StringUrlTrait;
31
32
    /**
33
     * Constructor.
34
     */
35
    public function __construct() {
36
        // NOTHING TO DO.
37
    }
38
}
39