InventoryItemStub::setHref()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
namespace Perry\Representation\Eve\v1;
3
4
use \Perry\Representation\Reference as Reference;
5
use \Perry\Representation\Uri as Uri;
6
use \Perry\Representation\Base as Base;
7
8
class InventoryItemStub extends Base
9
{
10
    public $href;
11
12
    public $id;
13
14
    // by Warringer\Types\Uri
15
    public function setHref($href)
16
    {
17
        $this->href = new Uri($href);
18
    }
19
20
    // by Warringer\Types\Long
21
    public function setId($id)
22
    {
23
        $this->id = $id;
24
    }
25
26
}
27