Passed
Branch master (837534)
by Oguzhan
04:07 queued 33s
created

Album   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 4
Bugs 1 Features 2
Metric Value
c 4
b 1
f 2
dl 0
loc 45
wmc 6
lcom 0
cbo 1
ccs 0
cts 12
cp 0
rs 10

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getParent() 0 4 1
A getByGuid() 0 4 1
A setParent() 0 4 1
A transformSingle() 0 4 1
A transformCollection() 0 4 1
A transform() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: PBX_g33k
5
 * Date: 22-May-16
6
 * Time: 22:21
7
 */
8
9
namespace Pbxg33k\MusicInfo\Service\VocaDB\Endpoint;
10
11
use Pbxg33k\MusicInfo\Model\IMusicServiceEndpoint;
12
use Pbxg33k\VocaDB\Album as AlbumEndpoint;
13
14
class Album extends AlbumEndpoint implements IMusicServiceEndpoint
15
{
16
    /**
17
     * @return mixed
18
     */
19
    public function getParent()
20
    {
21
        // TODO: Implement getApiService() method.
22
    }
23
24
    /**
25
     * Aliases getById
26
     *
27
     * @param $guid
28
     *
29
     * @return mixed
30
     */
31
    public function getByGuid($guid)
32
    {
33
        return $this->getById($guid);
34
    }
35
36
    /**
37
     * @return mixed
38
     */
39
    public function setParent($apiService)
40
    {
41
        // TODO: Implement setApiService() method.
42
    }
43
44
    public function transformSingle($raw)
45
    {
46
        // TODO: Implement transformSingle() method.
47
    }
48
49
    public function transformCollection($raw)
50
    {
51
        // TODO: Implement transformCollection() method.
52
    }
53
54
    public function transform($raw)
55
    {
56
        // TODO: Implement transform() method.
57
    }
58
}