@@ -131,10 +131,10 @@ |
||
131 | 131 | if (0 == count($lastCandidates)) { |
132 | 132 | continue; |
133 | 133 | } |
134 | - foreach($lastCandidates as $lc){ |
|
134 | + foreach ($lastCandidates as $lc) { |
|
135 | 135 | $stub = clone $this->knownSides[$knownType][$key]; |
136 | 136 | $isMulti = ($stub->getMultiplicity()->getValue() == \AlgoWeb\PODataLaravel\Models\ObjectMap\Entities\Associations\AssociationStubRelationType::MANY); |
137 | - $RelPolyTypeName = str_plural(substr($lc->getBaseType(),strrpos($lc->getBaseType(),"\\")+1),$isMulti?2:1); |
|
137 | + $RelPolyTypeName = str_plural(substr($lc->getBaseType(), strrpos($lc->getBaseType(), "\\")+1), $isMulti ? 2 : 1); |
|
138 | 138 | $stub->setRelationName($stub->getRelationName() . "_" . $RelPolyTypeName); |
139 | 139 | $assoc = new AssociationMonomorphic(); |
140 | 140 | $first = -1 === $stub->compare($lc); |
@@ -131,7 +131,7 @@ |
||
131 | 131 | if (0 == count($lastCandidates)) { |
132 | 132 | continue; |
133 | 133 | } |
134 | - foreach($lastCandidates as $lc){ |
|
134 | + foreach($lastCandidates as $lc) { |
|
135 | 135 | $stub = clone $this->knownSides[$knownType][$key]; |
136 | 136 | $isMulti = ($stub->getMultiplicity()->getValue() == \AlgoWeb\PODataLaravel\Models\ObjectMap\Entities\Associations\AssociationStubRelationType::MANY); |
137 | 137 | $RelPolyTypeName = str_plural(substr($lc->getBaseType(),strrpos($lc->getBaseType(),"\\")+1),$isMulti?2:1); |
@@ -193,7 +193,7 @@ |
||
193 | 193 | { |
194 | 194 | if ($association instanceof AssociationMonomorphic) { |
195 | 195 | $stub = $isFirst ? $association->getFirst() : $association->getLast(); |
196 | - if (null === $stub || (!in_array($stub, $this->stubs) && $stub instanceof AssociationStubMonomorphic )) { |
|
196 | + if (null === $stub || (!in_array($stub, $this->stubs) && $stub instanceof AssociationStubMonomorphic)) { |
|
197 | 197 | throw new \InvalidArgumentException('Association cannot be connected to this entity'); |
198 | 198 | } |
199 | 199 | $propertyName = $stub->getRelationName(); |