[ticket/17529] Remove unneeded wrapping curly braces

PHPBB-17529
This commit is contained in:
rxu 2025-06-21 09:56:21 +07:00
parent 6ccc6f0383
commit 044536dffb
No known key found for this signature in database
GPG key ID: 955F0567380E586A

View file

@ -166,11 +166,9 @@ class check_filesystem extends \phpbb\install\task_base
} }
} }
else if (!$this->filesystem->is_writable($path)) else if (!$this->filesystem->is_writable($path))
{
{ {
$writable = false; $writable = false;
} }
}
$this->set_test_passed(($exists && $writable) || $failable); $this->set_test_passed(($exists && $writable) || $failable);