Passed
Push — develop-3.3.x ( 5812a0...0f0ca4 )
by Mario
02:38
created
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.
controller/ipn_paypal.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,8 +89,7 @@
 block discarded – undo
89 89
 		language $language,
90 90
 		ipn_log $ppde_ipn_log,
91 91
 		request $request
92
-	)
93
-	{
92
+	) {
94 93
 		$this->config = $config;
95 94
 		$this->language = $language;
96 95
 		$this->ppde_ipn_log = $ppde_ipn_log;
Please login to merge, or discard this patch.
controller/esi_controller.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@
 block discarded – undo
28 28
 	public function __construct(
29 29
 		config $config,
30 30
 		extension_manager $ppde_ext_manager
31
-	)
32
-	{
31
+	) {
33 32
 		$this->config = $config;
34 33
 		$this->ppde_ext_manager = $ppde_ext_manager;
35 34
 	}
Please login to merge, or discard this patch.
entity/main.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,7 @@
 block discarded – undo
45 45
 		string $lang_key_suffix = '',
46 46
 		string $table_name = '',
47 47
 		array $table_schema = []
48
-	)
49
-	{
48
+	) {
50 49
 		$this->db = $db;
51 50
 		$this->language = $language;
52 51
 		$this->lang_key_prefix = $lang_key_prefix;
Please login to merge, or discard this patch.