Completed
Push — master ( bca71a...3af5ad )
by Sandro
06:14 queued 02:11
created

PackageConfigBench   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 2
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFactoryClass() 0 4 1
1
<?php
2
/**
3
 * Sandro Keil (https://sandro-keil.de)
4
 *
5
 * @link      http://github.com/sandrokeil/interop-config for the canonical source repository
6
 * @copyright Copyright (c) 2015-2016 Sandro Keil
7
 * @license   http://github.com/sandrokeil/interop-config/blob/master/LICENSE.md New BSD License
8
 */
9
10
namespace InteropBench\Config;
11
12
use InteropTest\Config\TestAsset\ConnectionConfiguration;
13
14
class PackageConfigBench extends BaseCase
15
{
16
    /**
17
     * @inheritdoc \InteropBench\Config\BaseCase::getFactoryClass
18
     */
19
    protected function getFactoryClass()
20
    {
21
        return new ConnectionConfiguration();
22
    }
23
}
24