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

MusicInfo::_prepareSearch()   B

Complexity

Conditions 8
Paths 5

Size

Total Lines 21
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 15
CRAP Score 8

Importance

Changes 0
Metric Value
dl 0
loc 21
ccs 15
cts 15
cp 1
rs 7.1428
c 0
b 0
f 0
cc 8
eloc 13
nc 5
nop 1
crap 8
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