Test Failed
Push — develop ( f585b7...c7796c )
by Oguzhan
02:31
created

MusicInfo::loadService()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 22
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 12
CRAP Score 3

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 22
ccs 12
cts 12
cp 1
rs 9.2
cc 3
eloc 12
nc 3
nop 2
crap 3
1
<?php
2
/*******************************************************************************
3
 * This file is part of the Pbxg33k\MusicInfo package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 *
8
 * (c) 2017 Oguzhan uysal. All rights reserved
9
 ******************************************************************************/
10
11
namespace Pbxg33k\MusicInfo;
12
13
use Doctrine\Common\Collections\ArrayCollection;
14
use GuzzleHttp\Client;
15
use GuzzleHttp\ClientInterface;
16
use Pbxg33k\InfoBase\InfoService;
17
use Pbxg33k\MusicInfo\Exception\ServiceConfigurationException;
18
use Pbxg33k\MusicInfo\Model\IMusicService;
19
use Pbxg33k\MusicInfo\Service\BaseService;
20
use Pbxg33k\Traits\PropertyTrait;
21
22
class MusicInfo extends InfoService
23
{
24
    protected function getNamespace()
25
    {
26
        return __NAMESPACE__;
27
    }
28
}
29