mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/17107] Add method parameter and result type declarations
PHPBB3-17107
This commit is contained in:
parent
dfe6421da8
commit
4f9bd296a7
1 changed files with 1 additions and 2 deletions
|
@ -41,10 +41,9 @@ class viewonline_helper
|
|||
* Array structure matches sql_fethrowset() result array
|
||||
*
|
||||
* @param array $session_data_rowset Users' session data array
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function get_forum_ids(&$session_data_rowset)
|
||||
public function get_forum_ids(array &$session_data_rowset): void
|
||||
{
|
||||
$topic_ids = $match = [];
|
||||
foreach ($session_data_rowset as $number => $row)
|
||||
|
|
Loading…
Add table
Reference in a new issue