Test Failed
Push — master ( 6e6d35...cb3af1 )
by Christopher
04:34
created

Edmx   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace AlgoWeb\ODataMetadata\MetadataV3\edmx;
4
5
/**
6
 * Class representing Edmx
7
 */
8
class Edmx extends TEdmxType
9
{
10
    public function __construct($version = "1.0")
11
    {
12
        $this->setVersion($version);
13
        $this->addToDataServices(new \AlgoWeb\ODataMetadata\MetadataV3\edm\Schema());
14
    }
15
}
16