ViewGroupRequest   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 23
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getGroupId() 0 4 1
A setGroupId() 0 4 1
1
<?php
2
namespace OmnideskBundle\Request\Group;
3
4
use OmnideskBundle\Request\RequestInterface;
5
6
/**
7
 * Class ViewGroupRequest
8
 * @package OmnideskBundle\Request\Group
9
 */
10
class ViewGroupRequest implements RequestInterface
11
{
12
    /**
13
     * @var int
14
     */
15
    private $groupId;
16
17
    /**
18
     * @return int
19
     */
20
    public function getGroupId()
21
    {
22
        return $this->groupId;
23
    }
24
25
    /**
26
     * @param int $groupId
27
     */
28
    public function setGroupId(int $groupId)
29
    {
30
        $this->groupId = $groupId;
31
    }
32
}
33