Completed
Pull Request — master (#29)
by Sandro
06:42
created

ConnectionMandatoryConfiguration::vendorName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
nc 1
cc 1
eloc 2
nop 0
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 InteropTest\Config\TestAsset;
11
12
use Interop\Config\ConfigurationTrait;
13
use Interop\Config\RequiresConfig;
14
use Interop\Config\RequiresMandatoryOptions;
15
16
class ConnectionMandatoryConfiguration implements RequiresConfig, RequiresMandatoryOptions
17
{
18
    use ConfigurationTrait;
19
20
    /**
21
     * @interitdoc
22
     */
23
    public function dimensions()
24
    {
25
        return ['doctrine', 'connection'];
26
    }
27
28
    public function mandatoryOptions()
29
    {
30
        return ['orm_default'];
31
    }
32
}
33