eZ/Publish/Core/Repository/URLService.php 1 location
|
@@ 60-62 (lines=3) @@
|
| 57 |
|
throw new UnauthorizedException('url', 'view'); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
if ($query->offset !== null && !is_numeric($query->offset)) { |
| 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); |
eZ/Publish/Core/Repository/TrashService.php 1 location
|
@@ 316-318 (lines=3) @@
|
| 313 |
|
} |
| 314 |
|
} |
| 315 |
|
|
| 316 |
|
if ($query->offset !== null && !is_numeric($query->offset)) { |
| 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'); |