Passed
Push — feature/unit-tests ( 9a4722...f5904a )
by Daniel
05:28
created

PathResolver::resolve()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
dl 0
loc 9
ccs 5
cts 5
cp 1
rs 10
c 1
b 0
f 0
cc 3
nc 3
nop 1
crap 3
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
class PathResolver
17
{
18
    /** @var array */
19
    private $roots;
20
21 2
    public function __construct(
22
        array $roots = []
23
    ) {
24 2
        $this->roots = $roots;
25 2
    }
26
27 2
    public function resolve($path): string
28
    {
29 2
        foreach ($this->roots as $root) {
30 1
            if (0 === strpos($path, $root)) {
31 1
                return mb_substr($path, mb_strlen($root));
32
            }
33
        }
34
35 1
        return $path;
36
    }
37
}
38