@@ -134,9 +134,9 @@ discard block |
||
134 | 134 | |
135 | 135 | $qb = $this->recordManager->find(strtolower((string) $parts[1])); |
136 | 136 | $qb->where($this->getName() . '_id = :id') |
137 | - ->setParameter('id', $this->__meta['id'], |
|
137 | + ->setParameter('id', $this->__meta['id'], |
|
138 | 138 | $this->determineIdType($this->__meta['id']) |
139 | - ); |
|
139 | + ); |
|
140 | 140 | |
141 | 141 | $result = $qb->get(); |
142 | 142 | |
@@ -155,9 +155,9 @@ discard block |
||
155 | 155 | |
156 | 156 | $db = $this->recordManager->find($relTable); |
157 | 157 | $db->where($this->getName() . '_id = :id') |
158 | - ->setParameter('id', $this->__meta['id'], |
|
158 | + ->setParameter('id', $this->__meta['id'], |
|
159 | 159 | $this->determineIdType($this->__meta['id']) |
160 | - ); |
|
160 | + ); |
|
161 | 161 | |
162 | 162 | $relations = $db->get(); |
163 | 163 | $relIds = $this->extractRelationIds($relations, $targetTable); |
@@ -168,9 +168,9 @@ discard block |
||
168 | 168 | |
169 | 169 | $db = $this->recordManager->find($targetTable); |
170 | 170 | $db->where('id IN (:ids)') |
171 | - ->setParameter('ids', $relIds, |
|
171 | + ->setParameter('ids', $relIds, |
|
172 | 172 | $this->determineIdsType($relIds) |
173 | - ); |
|
173 | + ); |
|
174 | 174 | |
175 | 175 | $result = $db->get(); |
176 | 176 |