Completed
Push — v2 ( 4c6274...a6d212 )
by Daniel
04:47
created

PathResolver::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 4
rs 10
ccs 0
cts 2
cp 0
cc 1
nc 1
nop 1
crap 2
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
    public function __construct(
22
        array $roots = []
23
    ) {
24
        $this->roots = $roots;
25
    }
26
27
    public function resolve($path): string
28
    {
29
        foreach ($this->roots as $root) {
30
            if (0 === mb_strpos($path, $root)) {
31
                return mb_substr($path, \strlen($root));
32
            }
33
        }
34
35
        return $path;
36
    }
37
}
38