Completed
Push — master ( 597a5a...27b735 )
by Park Jong-Hun
29s
created

Account::getName()   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
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace App\Auth\Model;
4
5
class Account {
6
    private $accountId;
7
    private $password;
8
    private $name;
9
10
    public function getAccountId()
11
    {
12
        return $this->accountId;
13
    }
14
15
    public function setAccountId($accountId)
16
    {
17
        $this->accountId = $accountId;
18
    }
19
20
    public function getPassword()
21
    {
22
        return $this->password;
23
    }
24
25
    public function setPassword($password)
26
    {
27
        $this->password = $password;
28
    }
29
30
    public function getName()
31
    {
32
        return $this->name;
33
    }
34
35
    public function setName($name)
36
    {
37
        $this->name = $name;
38
    }
39
}