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

ExtensionPoint   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 addDataType() 0 3 1
A addTask() 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;
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