We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39563e2 commit 9ee0aa1Copy full SHA for 9ee0aa1
1 file changed
solid/lib/Service/SolidWebhookService.php
@@ -11,7 +11,6 @@
11
use OCA\Solid\Db\SolidWebhookMapper;
12
13
class SolidWebhookService {
14
-
15
/** @var SolidWebhookMapper */
16
private $mapper;
17
@@ -28,8 +27,10 @@ public function findByPath(string $path): array {
28
27
}
29
30
private function handleException(Exception $e): void {
31
- if ($e instanceof DoesNotExistException ||
32
- $e instanceof MultipleObjectsReturnedException) {
+ if (
+ $e instanceof DoesNotExistException ||
+ $e instanceof MultipleObjectsReturnedException
33
+ ) {
34
throw new SolidWebhookNotFound($e->getMessage());
35
} else {
36
throw $e;
0 commit comments