Completed
Push — master ( 9601f0...c6396d )
by Michiel
21:12
created

ExcludesNameEntry::setName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1
crap 1
1
<?php
2
/**
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 *
15
 * This software consists of voluntary contributions made by many individuals
16
 * and is licensed under the LGPL. For more information please see
17
 * <http://phing.info>.
18
 */
19
20
/**
21
 * Class for holding nested excludes elements (file, class, method).
22
 *
23
 * @package phing.types
24
 * @author  Benjamin Schultz <[email protected]>
25
 * @since   2.4.6
26
 */
27
class ExcludesNameEntry
28
{
29
    /**
30
     * Holds the name of a file, class or method or a file pattern
31
     *
32
     * @var string
33
     */
34
    private $name;
35
36
    /**
37
     * An alias for the setName() method.
38
     * Set the name of a file pattern.
39
     *
40
     * @see setName()
41
     *
42
     * @param string $pattern The file pattern
43
     */
44 2
    public function addText($pattern)
45
    {
46 2
        $this->setName($pattern);
47 2
    }
48
49
    /**
50
     * Set the name of a file, class or method
51
     *
52
     * @param string $name
53
     */
54 3
    public function setName($name)
55
    {
56 3
        $this->name = (string) $name;
57 3
    }
58
59
    /**
60
     * Get the name of a file, class or method or the file pattern
61
     *
62
     * @return string The name of a file, class or method or the file pattern
63
     */
64 2
    public function getName()
65
    {
66 2
        return $this->name;
67
    }
68
69
    /**
70
     * Gets a string representation of this name or pattern.
71
     *
72
     * @return string
73
     */
74 1
    public function __toString()
75
    {
76 1
        return $this->name;
77
    }
78
}
79