Completed
Push — master ( a9bda0...6d80b1 )
by Ruben
12:06
created

Configuration::getConfigurationDefaults()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace Habu\ComposerScriptExample;
4
5
use Habu\ComposerScriptUtils\Configuration\AbstractConfiguration;
6
use Habu\ComposerScriptUtils\Configuration\Handler\Required;
7
8
class Configuration extends AbstractConfiguration
9
{
10
    public function getConfigurationDefaults()
11
    {
12
        return [
13
            'habu-script-example' => [
14
                'name' => new Required()
15
            ]
16
        ];
17
    }
18
}
19