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

ItemIds::itemRefs()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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