lint: fix php

pull/465/head
Varun Patil 2023-03-08 11:48:36 -08:00
parent 08deed1e39
commit 4b4fcd5047
1 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,9 @@ trait TimelineWritePlaces
$gisType = \OCA\Memories\Util::placesGISType();
// Check if valid
if ($gisType <= 0) return;
if ($gisType <= 0) {
return;
}
// Delete previous records
$query = $this->connection->getQueryBuilder();