From 1a85b41089416f54ab13974e18b26b3f8c0aa7f7 Mon Sep 17 00:00:00 2001
From: Patrizio Bekerle <patrizio@bekerle.com>
Date: Wed, 22 Dec 2021 16:18:14 +0100
Subject: [PATCH] Fix linter issue

---
 bin/disable-database-url.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bin/disable-database-url.php b/bin/disable-database-url.php
index f9af79e..96b16b3 100755
--- a/bin/disable-database-url.php
+++ b/bin/disable-database-url.php
@@ -13,8 +13,7 @@ $replacement = '# $1';
 
 $strAfter = preg_replace($pattern, $replacement, $str);
 
-if ($strAfter !== $str)
-{
+if ($strAfter !== $str) {
     // write the entire string
     file_put_contents('.env', $strAfter);
 
-- 
GitLab