From d1406970cc7eb3e86207307839bc6a5cf584776f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tautvidas=20Sipavi=C4=8Dius?= Date: Thu, 23 Aug 2018 15:11:45 +0300 Subject: [PATCH] Fix coding style issue - redundant space after if --- lib/Config/PHPVersionWarnings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Config/PHPVersionWarnings.php b/lib/Config/PHPVersionWarnings.php index cd6a942b17..7908b5f378 100644 --- a/lib/Config/PHPVersionWarnings.php +++ b/lib/Config/PHPVersionWarnings.php @@ -15,7 +15,7 @@ class PHPVersionWarnings { 'ajaxDismissNoticeHandler' )); - if ($is_enabled && $this->isOutdatedPHPVersion($php_version)) { + if($is_enabled && $this->isOutdatedPHPVersion($php_version)) { return $this->displayError($php_version); } }