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

ExtensionPoint::addTask()   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
eloc 1
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 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;
22
23
use Phing\Exception\BuildException;
24
25
/**
26
 * An extension point build files can provide as a place where other
27
 * build files can add new dependencies.
28
 *
29
 * @author  Siad Ardroumli <[email protected]>
30
 */
31
class ExtensionPoint extends Target
32
{
33
    private const NO_CHILDREN_ALLOWED = 'you must not nest child elements into an extension-point';
34
35
    /**
36
     * Throws an exception.
37
     *
38
     * @throws BuildException
39
     */
40 1
    public function addTask(Task $task)
41
    {
42 1
        throw new BuildException(self::NO_CHILDREN_ALLOWED);
43
    }
44
45
    /**
46
     * Throws an exception.
47
     *
48
     * @param RuntimeConfigurable $r
49
     *
50
     * @throws BuildException
51
     */
52
    public function addDataType($r)
53
    {
54
        throw new BuildException(self::NO_CHILDREN_ALLOWED);
55
    }
56
}
57