Passed
Push — develop-3.3.x ( ca0c68...7c1a2d )
by Mario
02:36
created
controller/admin/transactions_controller.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,8 +95,7 @@
 block discarded – undo
95 95
 		string $adm_relative_path,
96 96
 		string $phpbb_root_path,
97 97
 		string $php_ext
98
-	)
99
-	{
98
+	) {
100 99
 		$this->auth = $auth;
101 100
 		$this->config = $config;
102 101
 		$this->container = $container;
Please login to merge, or discard this patch.
includes/transaction_template_helper.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,7 @@
 block discarded – undo
43 43
 		string $adm_relative_path,
44 44
 		string $phpbb_root_path,
45 45
 		string $php_ext
46
-	)
47
-	{
46
+	) {
48 47
 		$this->template = $template;
49 48
 		$this->language = $language;
50 49
 		$this->user = $user;
Please login to merge, or discard this patch.
operators/transactions.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
 		}
189 189
 
190 190
 		// Build pattern and keywords...
191
-		$keywords = array_map(function ($keyword) {
191
+		$keywords = array_map(function($keyword) {
192 192
 			return $this->db->sql_like_expression($this->db->get_any_char() . $keyword . $this->db->get_any_char());
193 193
 		}, $keywords);
194 194
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,8 @@
 block discarded – undo
188 188
 		}
189 189
 
190 190
 		// Build pattern and keywords...
191
-		$keywords = array_map(function ($keyword) {
191
+		$keywords = array_map(function ($keyword)
192
+		{
192 193
 			return $this->db->sql_like_expression($this->db->get_any_char() . $keyword . $this->db->get_any_char());
193 194
 		}, $keywords);
194 195
 
Please login to merge, or discard this patch.