Completed
Push — master ( d7a03e...14e3cb )
by Erwan
02:21
created
qte.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -69,16 +69,16 @@  discard block
 block discarded – undo
69 69
 	*/
70 70
 	public function __construct(\phpbb\request\request $request, \phpbb\cache\driver\driver_interface $cache, \phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\template\template $template, \phpbb\user $user, \phpbb\log\log $log, $root_path, $php_ext, $table_prefix)
71 71
 	{
72
-		$this->request		= $request;
73
-		$this->cache		= $cache;
74
-		$this->config		= $config;
75
-		$this->db			= $db;
76
-		$this->template		= $template;
77
-		$this->user			= $user;
78
-		$this->log			= $log;
79
-
80
-		$this->root_path	= $root_path;
81
-		$this->php_ext		= $php_ext;
72
+		$this->request = $request;
73
+		$this->cache = $cache;
74
+		$this->config = $config;
75
+		$this->db = $db;
76
+		$this->template = $template;
77
+		$this->user = $user;
78
+		$this->log = $log;
79
+
80
+		$this->root_path = $root_path;
81
+		$this->php_ext = $php_ext;
82 82
 		$this->table_prefix = $table_prefix;
83 83
 
84 84
 		$this->_get_attributes();
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 		$result = $this->db->sql_query($sql);
142 142
 
143 143
 		$this->_name = array();
144
-		while ( $row = $this->db->sql_fetchrow($result) )
144
+		while ($row = $this->db->sql_fetchrow($result))
145 145
 		{
146 146
 			$this->_name[$row['user_id']] = array(
147 147
 				'user_id'		=> (int) $row['user_id'],
Please login to merge, or discard this patch.