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

MusicInfo::getNamespace()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 0
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
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