Skip to content

Commit 9ee0aa1

Browse files
committed
whitespace - fix sniff
1 parent 39563e2 commit 9ee0aa1

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

solid/lib/Service/SolidWebhookService.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use OCA\Solid\Db\SolidWebhookMapper;
1212

1313
class SolidWebhookService {
14-
1514
/** @var SolidWebhookMapper */
1615
private $mapper;
1716

@@ -28,8 +27,10 @@ public function findByPath(string $path): array {
2827
}
2928

3029
private function handleException(Exception $e): void {
31-
if ($e instanceof DoesNotExistException ||
32-
$e instanceof MultipleObjectsReturnedException) {
30+
if (
31+
$e instanceof DoesNotExistException ||
32+
$e instanceof MultipleObjectsReturnedException
33+
) {
3334
throw new SolidWebhookNotFound($e->getMessage());
3435
} else {
3536
throw $e;

0 commit comments

Comments
 (0)