Skip to content

Commit 8800985

Browse files
committed
lint
1 parent 8a83a2e commit 8800985

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Database/Adapter/MariaDB.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,7 @@ public function updateDocument(string $collection, string $id, Document $documen
945945
$name = $this->filter($collection);
946946
$columns = '';
947947

948-
if (!$skipPermissions){
948+
if (!$skipPermissions) {
949949
$sql = "
950950
SELECT _type, _permission
951951
FROM {$this->getSQLTable($name . '_perms')}

src/Database/Adapter/Postgres.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ public function updateDocument(string $collection, string $id, Document $documen
10641064
$name = $this->filter($collection);
10651065
$columns = '';
10661066

1067-
if (!$skipPermissions){
1067+
if (!$skipPermissions) {
10681068
$sql = "
10691069
SELECT _type, _permission
10701070
FROM {$this->getSQLTable($name . '_perms')}

0 commit comments

Comments
 (0)