Failed Conditions
Push — future/ConfuenceWrapper ( 28d061...f8e71e )
by
unknown
22:28
created

Attribute   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setName() 0 4 1
A setFullName() 0 4 1
A setValueType() 0 4 1
1
<?php
2
/**
3
 * Created by IntelliJ IDEA.
4
 * User: yoshi
5
 * Date: 29.01.16
6
 * Time: 15:37
7
 */
8
9
namespace CodeMine\ConfluenceImporter\Parser\Structure\Attribute;
10
11
12
class Attribute
13
{
14
    private $name;
15
    private $fullName;
16
17
    private $valueType;
18
19
    /**
20
     * @param string $name
21
     */
22
    public function setName($name)
23
    {
24
        $this->name = $name;
25
    }
26
27
    /**
28
     * @param string $fullName
29
     */
30
    public function setFullName($fullName)
31
    {
32
        $this->fullName = $fullName;
33
    }
34
35
    /**
36
     * @param mixed $valueType
37
     */
38
    public function setValueType($valueType)
39
    {
40
        $this->valueType = $valueType;
41
    }
42
43
44
45
}