Completed
Push — master ( 7ba73a...cfde8a )
by Steve
29s
created

Builder::__call()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 2
eloc 4
nc 2
nop 2
1
<?php
2
3
namespace StoutLogic\AcfBuilder;
4
5
/**
6
 * Interface for Builder
7
 * Builds a configuration array
8
 */
9
interface Builder
10
{
11
    /**
12
     * Builds the configuration
13
     * @return array configuration
14
     */
15
    public function build();
16
}
17