Completed
Push — master ( d234f3...0a4926 )
by Jan Philipp
47s queued 12s
created

ConfigFileLoader::fixPath()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 23

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 23
rs 9.552
c 0
b 0
f 0
cc 3
nc 3
nop 3
1
<?php declare(strict_types=1);
2
3
namespace Shopware\Psh\Config;
4
5
/**
6
 * Load configuration data from a file
7
 */
8
interface ConfigFileLoader
9
{
10
    public function isSupported(string $file): bool;
11
12
    public function load(string $file, array $params): Config;
13
}
14