[ticket/11515] Space between if and braces

Exactly one space between if and opening brace.

PHPBB3-11515
This commit is contained in:
Vishal Pandey 2017-03-14 02:27:18 +05:30 committed by Marc Alexander
parent 530e5bca87
commit cf12223b25
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -160,7 +160,7 @@ class config implements \ArrayAccess, \IteratorAggregate, \Countable
*/ */
public function ensure_lock($key, $new_value) public function ensure_lock($key, $new_value)
{ {
if(isset($this->config[$key]) && $this->config[$key] == $new_value) if (isset($this->config[$key]) && $this->config[$key] == $new_value)
{ {
return true; return true;
} }