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

MusicInfo   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
ccs 0
cts 0
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getNamespace() 0 4 1
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