Completed
Pull Request — master (#33)
by Matt
07:11
created
controller/acp_controller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,10 +47,10 @@
 block discarded – undo
47 47
 	 */
48 48
 	public function __construct(request $request, settings $settings, template $template, user $user)
49 49
 	{
50
-		$this->request	= $request;
50
+		$this->request = $request;
51 51
 		$this->settings = $settings;
52 52
 		$this->template	= $template;
53
-		$this->user		= $user;
53
+		$this->user = $user;
54 54
 	}
55 55
 
56 56
 	/**
Please login to merge, or discard this patch.
core/settings.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -59,12 +59,12 @@
 block discarded – undo
59 59
 	 */
60 60
 	public function __construct(cache_driver $cache, config $config, db_driver $db, manager $phpbb_ext_manager, request $request, $phpbb_root_path)
61 61
 	{
62
-		$this->cache			= $cache;
63
-		$this->config			= $config;
64
-		$this->db				= $db;
65
-		$this->ext_manager		= $phpbb_ext_manager;
66
-		$this->request			= $request;
67
-		$this->phpbb_root_path	= $phpbb_root_path;
62
+		$this->cache = $cache;
63
+		$this->config = $config;
64
+		$this->db = $db;
65
+		$this->ext_manager = $phpbb_ext_manager;
66
+		$this->request = $request;
67
+		$this->phpbb_root_path = $phpbb_root_path;
68 68
 	}
69 69
 
70 70
 	/**
Please login to merge, or discard this patch.