Skip to content

Commit

Permalink
Corrected variable naming.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Achatz committed Aug 22, 2018
1 parent 04ece24 commit 4d0ab2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/genericormapper/data/BaseMapper.php
Expand Up @@ -403,8 +403,8 @@ public function addRelationConfiguration($configNamespace, $configNameAffix) {
$this->relationTable[$relationName] = $this->generateRelationItem($relationName, $addRelations[$relationName]);
}

if (isset($addObjects[$relationName][self::$STORAGE_ENGINE_INDICATOR])) {
$this->relationStorageEngineTable[$relationName] = $addObjects[$relationName][self::$STORAGE_ENGINE_INDICATOR];
if (isset($addRelations[$relationName][self::$STORAGE_ENGINE_INDICATOR])) {
$this->relationStorageEngineTable[$relationName] = $addRelations[$relationName][self::$STORAGE_ENGINE_INDICATOR];
}
}

Expand Down

0 comments on commit 4d0ab2b

Please sign in to comment.