Completed
Push — master ( daff1e...e8ad81 )
by Alex
05:01
created

MetadataManagerDummy   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A createAssocationFromNavigationProperty() 0 21 1
1
<?php
2
3
namespace AlgoWeb\ODataMetadata\Tests;
4
5
use AlgoWeb\ODataMetadata\MetadataManager;
6
use AlgoWeb\ODataMetadata\MetadataV3\edm\TEntityTypeType;
7
use AlgoWeb\ODataMetadata\MetadataV3\edm\TNavigationPropertyType;
8
9
class MetadataManagerDummy extends MetadataManager
10
{
11
    public function createAssocationFromNavigationProperty(
12
        TEntityTypeType $principalType,
13
        TEntityTypeType $dependentType,
14
        TNavigationPropertyType $principalNavigationProperty,
15
        TNavigationPropertyType $dependentNavigationProperty = null,
16
        $principalMultiplicity,
17
        $dependentMultiplicity,
18
        array $principalConstraintProperty = null,
19
        array $dependentConstraintProperty = null
20
    ) {
21
        return parent::createAssocationFromNavigationProperty(
22
            $principalType,
23
            $dependentType,
24
            $principalNavigationProperty,
25
            $dependentNavigationProperty,
26
            $principalMultiplicity,
27
            $dependentMultiplicity,
28
            $principalConstraintProperty,
29
            $dependentConstraintProperty
30
        );
31
    }
32
}
33