Fix coding style issue - redundant space after if

This commit is contained in:
Tautvidas Sipavičius
2018-08-23 15:11:45 +03:00
parent c68f58a7c0
commit d1406970cc

View File

@@ -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);
}
}