mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/11515] Space between if and braces
Exactly one space between if and opening brace. PHPBB3-11515
This commit is contained in:
parent
1ba32e1b7a
commit
4f71a75df1
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ class config implements \ArrayAccess, \IteratorAggregate, \Countable
|
|||
*/
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue