Completed
Pull Request — master (#366)
by Beñat
04:48
created

ViewNotificationsQuery   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 0
dl 0
loc 39
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 11 1
A userId() 0 4 1
A offset() 0 4 1
A limit() 0 4 1
A status() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the Kreta package.
5
 *
6
 * (c) Beñat Espiña <[email protected]>
7
 * (c) Gorka Laucirica <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
declare(strict_types=1);
14
15
namespace Kreta\Notifier\Application\Inbox\Notification;
16
17
class ViewNotificationsQuery
18
{
19
    private $userId;
20
    private $offset;
21
    private $limit;
22
    private $status;
23
24
    public function __construct(
25
        string $userId,
26
        int $offset,
27
        int $limit,
28
        string $status = null
29
    ) {
30
        $this->limit = $limit;
31
        $this->offset = $offset;
32
        $this->status = $status;
33
        $this->userId = $userId;
34
    }
35
36
    public function userId() : string
37
    {
38
        return $this->userId;
39
    }
40
41
    public function offset() : int
42
    {
43
        return $this->offset;
44
    }
45
46
    public function limit() : int
47
    {
48
        return $this->limit;
49
    }
50
51
    public function status() : ?string
52
    {
53
        return $this->status;
54
    }
55
}
56