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

User   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 15
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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