Passed
Pull Request — master (#6)
by Tim
02:14
created

AbstractTypes   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 0
f 0
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\WSSecurity\XML\wsdl;
6
7
/**
8
 * Abstract class representing the tTypes type.
9
 *
10
 * @package simplesamlphp/ws-security
11
 */
12
abstract class AbstractTypes extends AbstractExtensibleDocumented
13
{
14
    /**
15
     * Initialize a wsdl:tTypes
16
     *
17
     * @param \SimpleSAML\XML\Chunk[] $elements
18
     */
19
    public function __construct(
20
        array $elements = [],
21
    ) {
22
        parent::__construct($elements);
23
    }
24
}
25