Passed
Push — main ( 6d6278...7007dc )
by Michiel
06:36
created

PhingReference   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Test Coverage

Coverage 50%

Importance

Changes 0
Metric Value
wmc 2
eloc 4
dl 0
loc 24
ccs 2
cts 4
cp 0.5
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setToRefid() 0 3 1
A getToRefid() 0 3 1
1
<?php
2
3
/**
4
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
5
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
6
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
7
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
8
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
10
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
11
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
12
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
13
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
14
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15
 *
16
 * This software consists of voluntary contributions made by many individuals
17
 * and is licensed under the LGPL. For more information please see
18
 * <http://phing.info>.
19
 */
20
21
namespace Phing\Task\System;
22
23
use Phing\Type\Reference;
24
25
/**
26
 * Helper class that implements the nested <reference>
27
 * element of <phing> and <phingcall>.
28
 */
29
class PhingReference extends Reference
30
{
31
    private $targetid;
32
33
    /**
34
     * Set the id that this reference to be stored under in the
35
     * new project.
36
     *
37
     * @param string $targetid The id under which this reference will be passed to the new project
38
     */
39
    public function setToRefid($targetid)
40
    {
41
        $this->targetid = $targetid;
42
    }
43
44
    /**
45
     * Get the id under which this reference will be stored in the new
46
     * project.
47
     *
48
     * @return string the id of the reference in the new project
49
     */
50 1
    public function getToRefid()
51
    {
52 1
        return $this->targetid;
53
    }
54
}
55