Completed
Branch master (d25f9a)
by Joachim
22:07 queued 07:20
created

Endpoint::objectToArray()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
namespace Loevgaard\Dandomain\Api\Endpoint;
3
4
use Loevgaard\Dandomain\Api\Api;
5
6
abstract class Endpoint
7
{
8
    /**
9
     * @var Api
10
     */
11
    protected $master;
12
13
    public function __construct(Api $master)
14
    {
15
        $this->master = $master;
16
    }
17
}
18