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

MusicInfo::doSearch()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 17
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 3

Importance

Changes 0
Metric Value
dl 0
loc 17
ccs 10
cts 10
cp 1
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 9
nc 3
nop 3
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