| 1 | <?php |
||
| 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 |