Completed
Branch develop (2aa849)
by Steve
09:08
created

Builder::__call()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 8
rs 9.4285
nc 2
cc 2
eloc 4
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