Test Failed
Push — master ( 99cade...32f37c )
by Dan Michael O.
10:15
created

ResourceSharingRequest::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Scriptotek\Alma\TaskLists;
4
5
use Scriptotek\Alma\Client;
6
use Scriptotek\Alma\Model\Model;
7
8
class ResourceSharingRequest extends Model
9
{
10
    /** @var string */
11
    public $request_id;
12
13
    public function __construct(Client $client, $id)
14
    {
15
        parent::__construct($client);
16
        $this->request_id = $id;
17
    }
18
}
19