eZ/Publish/Core/Repository/URLService.php 1 location
|
@@ 64-66 (lines=3) @@
|
| 61 |
|
throw new InvalidArgumentValue('offset', $query->offset); |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
if ($query->limit !== null && !is_numeric($query->limit)) { |
| 65 |
|
throw new InvalidArgumentValue('limit', $query->limit); |
| 66 |
|
} |
| 67 |
|
|
| 68 |
|
$results = $this->urlHandler->find($query); |
| 69 |
|
|
eZ/Publish/Core/Repository/TrashService.php 1 location
|
@@ 320-322 (lines=3) @@
|
| 317 |
|
throw new InvalidArgumentValue('query->offset', $query->offset, 'Query'); |
| 318 |
|
} |
| 319 |
|
|
| 320 |
|
if ($query->limit !== null && !is_numeric($query->limit)) { |
| 321 |
|
throw new InvalidArgumentValue('query->limit', $query->limit, 'Query'); |
| 322 |
|
} |
| 323 |
|
|
| 324 |
|
$spiTrashItems = $this->persistenceHandler->trashHandler()->findTrashItems( |
| 325 |
|
$query->filter, |