Passed
Push — master ( e5c614...6595be )
by Siad
13:10
created

ExtensionPoint   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
dl 0
loc 22
ccs 0
cts 4
cp 0
rs 10
c 1
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A addTask() 0 3 1
A addDataType() 0 3 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
 * An extension point build files can provide as a place where other
22
 * build files can add new dependencies.
23
 *
24
 * @author    Siad Ardroumli <[email protected]>
25
 * @package   phing
26
 */
27
class ExtensionPoint extends Target
28
{
29
    private const NO_CHILDREN_ALLOWED = "you must not nest child elements into an extension-point";
30
31
    /**
32
     * Throws an exception.
33
     * @param Task $task
34
     * @throws \BuildException
35
     */
36
    public function addTask(Task $task)
37
    {
38
        throw new BuildException(self::NO_CHILDREN_ALLOWED);
39
    }
40
41
    /**
42
     * Throws an exception.
43
     * @param RuntimeConfigurable $r
44
     * @throws \BuildException
45
     */
46
    public function addDataType($r)
47
    {
48
        throw new BuildException(self::NO_CHILDREN_ALLOWED);
49
    }
50
}
51