mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-13 12:14:06 +02:00
[ticket/9687] Fix code style and tests
PHPBB3-9687
This commit is contained in:
committed by
Marc Alexander
parent
64ab1fc24c
commit
e7015bf1dd
@@ -15,7 +15,6 @@ namespace phpbb\ban;
|
||||
|
||||
use phpbb\ban\exception\ban_insert_failed_exception;
|
||||
use phpbb\ban\exception\invalid_length_exception;
|
||||
use phpbb\ban\exception\no_items_specified_exception;
|
||||
use phpbb\ban\exception\type_not_found_exception;
|
||||
|
||||
class manager
|
||||
@@ -189,7 +188,7 @@ class manager
|
||||
$user_ids = [];
|
||||
while ($row = $this->db->sql_fetchrow($result))
|
||||
{
|
||||
$user_ids[] = (int)$row['user_id'];
|
||||
$user_ids[] = (int) $row['user_id'];
|
||||
}
|
||||
$this->db->sql_freeresult($result);
|
||||
}
|
||||
|
Reference in New Issue
Block a user