ViewGroupRequest::setGroupId()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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