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

Account   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getAccountId() 0 4 1
A setAccountId() 0 4 1
A getPassword() 0 4 1
A setPassword() 0 4 1
A getName() 0 4 1
A setName() 0 4 1
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
}