Passed
Push — renovate/configure ( 0990eb...046e0a )
by
unknown
20:50
created
language/en/info_acp_settings.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,11 +8,13 @@
 block discarded – undo
8 8
 /**
9 9
  * @ignore
10 10
  */
11
-if (!defined('IN_PHPBB')) {
11
+if (!defined('IN_PHPBB'))
12
+{
12 13
     exit;
13 14
 }
14 15
 
15
-if (empty($lang) || !is_array($lang)) {
16
+if (empty($lang) || !is_array($lang))
17
+{
16 18
     $lang = [];
17 19
 }
18 20
 
Please login to merge, or discard this patch.
services/filemanager/settings.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 		$this->config_path = $config_path;
54 54
 		$this->php_ext = $php_ext;
55 55
 
56
-		$this->config_template = __DIR__.'/default.config';
56
+		$this->config_template = __DIR__ . '/default.config';
57 57
 	}
58 58
 
59 59
 	/**
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 		$config_file = $this->get_config_file();
103 103
 		$test_line = file($config_file)[1];
104 104
 
105
-		if (false === strpos($test_line, 'Sitemaker '.$this->config_version))
105
+		if (false === strpos($test_line, 'Sitemaker ' . $this->config_version))
106 106
 		{
107 107
 			$curr_settings = [];
108 108
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 	 */
167 167
 	protected function get_config_file()
168 168
 	{
169
-		$config_file = $this->config_path.'config.'.$this->php_ext;
169
+		$config_file = $this->config_path . 'config.' . $this->php_ext;
170 170
 
171 171
 		if (!$this->filesystem->exists($config_file))
172 172
 		{
Please login to merge, or discard this patch.