Completed
Pull Request — master (#152)
by Christopher
03:37
created

AtomAuthor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Barnso
5
 * Date: 16/08/2017
6
 * Time: 4:57 AM.
7
 */
8
namespace POData\ObjectModel\AtomObjectModel;
9
10
class AtomAuthor
11
{
12
    /**
13
     * Title.
14
     *
15
     * @var string
16
     */
17
    public $name;
18
19
    public function __construct($name = '')
20
    {
21
        $this->name = $name;
22
    }
23
}
24