PathFactory   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 3
dl 0
loc 33
ccs 6
cts 6
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A createRepositoryForPath() 0 4 1
1
<?php
2
/*
3
 * Copyright (C) 2017 by TEQneers GmbH & Co. KG
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 * of this software and associated documentation files (the "Software"), to deal
7
 * in the Software without restriction, including without limitation the rights
8
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in
13
 * all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
 * THE SOFTWARE.
22
 */
23
24
/**
25
 * Git Stream Wrapper for PHP
26
 *
27
 * @category   TQ
28
 * @package    TQ_VCS
29
 * @subpackage SVN
30
 * @copyright  Copyright (C) 2018 by TEQneers GmbH & Co. KG
31
 */
32
33
namespace TQ\Svn\StreamWrapper;
34
use TQ\Svn\Cli\Binary;
35
use TQ\Svn\Repository\Repository;
36
use TQ\Vcs\Repository\RepositoryInterface;
37
use TQ\Vcs\StreamWrapper\AbstractPathFactory;
38
use TQ\Vcs\StreamWrapper\RepositoryRegistry;
39
40
/**
41
 * Creates path information for a given stream URL
42
 *
43
 * @author     Stefan Gehrig <gehrigteqneers.de>
44
 * @category   TQ
45
 * @package    TQ_VCS
46
 * @subpackage SVN
47
 * @copyright  Copyright (C) 2018 by TEQneers GmbH & Co. KG
48
 */
49
class PathFactory extends AbstractPathFactory
50
{
51
    /**
52
     * The SVN binary
53
     *
54
     * @var Binary
55
     */
56
    protected $svn;
57
58
    /**
59
     * Creates a path factory
60
     *
61
     * @param   string              $protocol    The protocol (such as "svn")
62
     * @param   Binary|string|null  $svn         The SVN binary
63
     * @param   RepositoryRegistry  $map         The repository registry
64
     */
65 56
    public function __construct($protocol, $svn = null, RepositoryRegistry $map = null)
66
    {
67 56
        parent::__construct($protocol, $map);
68 56
        $this->svn   = Binary::ensure($svn);
69 56
    }
70
71
    /**
72
     * Creates a new Repository instance for the given path
73
     *
74
     * @param   string      $path       The path
75
     * @return  RepositoryInterface
76
     */
77 52
    protected function createRepositoryForPath($path)
78
    {
79 52
        return Repository::open($path, $this->svn);
80
    }
81
}
82