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

Attribute::setName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 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
}