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
|
@@ 314-316 (lines=3) @@
|
| 311 |
|
throw new InvalidArgumentValue('query->offset', $query->offset, 'Query'); |
| 312 |
|
} |
| 313 |
|
|
| 314 |
|
if ($query->limit !== null && !is_numeric($query->limit)) { |
| 315 |
|
throw new InvalidArgumentValue('query->limit', $query->limit, 'Query'); |
| 316 |
|
} |
| 317 |
|
|
| 318 |
|
$spiTrashItems = $this->persistenceHandler->trashHandler()->findTrashItems( |
| 319 |
|
$query->filter, |