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
|
@@ 306-308 (lines=3) @@
|
| 303 |
|
throw new InvalidArgumentValue('query->offset', $query->offset, 'Query'); |
| 304 |
|
} |
| 305 |
|
|
| 306 |
|
if ($query->limit !== null && !is_numeric($query->limit)) { |
| 307 |
|
throw new InvalidArgumentValue('query->limit', $query->limit, 'Query'); |
| 308 |
|
} |
| 309 |
|
|
| 310 |
|
$spiTrashItems = $this->persistenceHandler->trashHandler()->findTrashItems( |
| 311 |
|
$query->filter, |