eZ/Publish/API/Repository/Tests/SearchServiceLocationTest.php 1 location
|
@@ 1127-1132 (lines=6) @@
|
| 1124 |
|
|
| 1125 |
|
foreach ($result->searchHits as $hit) { |
| 1126 |
|
switch (true) { |
| 1127 |
|
case $hit->valueObject instanceof Location: |
| 1128 |
|
$hit->valueObject = [ |
| 1129 |
|
'id' => $hit->valueObject->contentInfo->id, |
| 1130 |
|
'title' => $hit->valueObject->contentInfo->name, |
| 1131 |
|
]; |
| 1132 |
|
break; |
| 1133 |
|
|
| 1134 |
|
default: |
| 1135 |
|
throw new \RuntimeException('Unknown search result hit type: ' . get_class($hit->valueObject)); |
eZ/Publish/API/Repository/Tests/SearchServiceTest.php 1 location
|
@@ 4559-4564 (lines=6) @@
|
| 4556 |
|
foreach ($result->searchHits as $hit) { |
| 4557 |
|
switch (true) { |
| 4558 |
|
case $hit->valueObject instanceof Content: |
| 4559 |
|
case $hit->valueObject instanceof Location: |
| 4560 |
|
$hit->valueObject = [ |
| 4561 |
|
'id' => $hit->valueObject->contentInfo->id, |
| 4562 |
|
'title' => $hit->valueObject->contentInfo->name, |
| 4563 |
|
]; |
| 4564 |
|
break; |
| 4565 |
|
|
| 4566 |
|
case $hit->valueObject instanceof ContentInfo: |
| 4567 |
|
$hit->valueObject = [ |