[ticket/11515] Refactoring the patch.

Removing else conditions.

PHPBB3-11515
This commit is contained in:
Vishal Pandey 2017-03-14 17:19:41 +05:30 committed by Marc Alexander
parent cf12223b25
commit 7d4909dc06
No known key found for this signature in database
GPG key ID: 50E0D2423696F995
3 changed files with 3 additions and 13 deletions

View file

@ -164,11 +164,8 @@ class config implements \ArrayAccess, \IteratorAggregate, \Countable
{ {
return true; return true;
} }
else
{
throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.'); throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.');
} }
}
/** /**
* Increments an integer configuration value. * Increments an integer configuration value.

View file

@ -117,12 +117,8 @@ class db
return true; return true;
} }
} }
else
{
return $this->locked; return $this->locked;
} }
}
/** /**
* Does this process own the lock? * Does this process own the lock?

View file

@ -105,11 +105,8 @@ class flock
{ {
return (bool) $this->lock_fp; return (bool) $this->lock_fp;
} }
else
{
throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.'); throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.');
} }
}
return (bool) $this->lock_fp; return (bool) $this->lock_fp;
} }