From 4b4fcd50476ccb1d36b5b224e44c7e31f465fa4f Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Wed, 8 Mar 2023 11:48:36 -0800 Subject: [PATCH] lint: fix php --- lib/Db/TimelineWritePlaces.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Db/TimelineWritePlaces.php b/lib/Db/TimelineWritePlaces.php index cee252d5..8e74a7ce 100644 --- a/lib/Db/TimelineWritePlaces.php +++ b/lib/Db/TimelineWritePlaces.php @@ -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();