Completed
Push — master ( be9a03...23390d )
by Julien
03:34 queued 01:09
created

HalCollection::getEmbedded()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Mapado\RestClientSdk\Collection;
4
5
/**
6
 * Class HalCollection
7
 * @author Julien Deniau <[email protected]>
8
 */
9
class HalCollection extends Collection
10
{
11
    public function getLinks()
12
    {
13
        return $this->getExtraProperty('_links');
14
    }
15
16
    public function getEmbedded()
17
    {
18
        return $this->getExtraProperty('_embedded');
19
    }
20
}
21