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

Edmx::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 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