Passed
Push — feature/publishable ( 54a3e3...e9b8e1 )
by Daniel
23:16 queued 13:16
created

PathResolver::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
3
/*
4
 * This file is part of the Silverback API Component Bundle Project
5
 *
6
 * (c) Daniel West <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Silverback\ApiComponentBundle\Imagine;
15
16
/**
17
 * @author Daniel West <[email protected]>
18
 */
19
class PathResolver
20
{
21
    /** @var array */
22
    private $roots;
23
24 2
    public function __construct(
25
        array $roots = []
26
    ) {
27 2
        $this->roots = $roots;
28 2
    }
29
30 2
    public function resolve($path): string
31
    {
32 2
        foreach ($this->roots as $root) {
33 1
            if (0 === strpos($path, $root)) {
34 1
                return mb_substr($path, mb_strlen($root));
35
            }
36
        }
37
38 1
        return $path;
39
    }
40
}
41