Passed
Push — master ( a8d415...e9058e )
by Kuts
01:33
created

ItemIds   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A itemRefs() 0 3 1
A items() 0 3 1
A continuation() 0 3 1
1
<?php
2
declare(strict_types=1);
3
/**
4
 * @package inoreader-api
5
 *
6
 * @author  Dmitriy Kuts <[email protected]>
7
 * @link    http://exileed.com
8
 *
9
 */
10
11
12
namespace ExileeD\Inoreader\Objects;
13
14
15
class ItemIds extends AbstractObject implements ObjectInterface
16
{
17
18
19
    public function items(): array
20
    {
21
        return $this->data->items;
22
    }
23
24
    /**
25
     * @return ItemRef[]
26
     */
27
    public function itemRefs(): array
28
    {
29
        return $this->data->itemRefs;
30
    }
31
32
    public function continuation(): string
33
    {
34
        return $this->data->continuation;
35
    }
36
37
}