Passed
Push — develop-3.3.x ( 42b3f8...95f552 )
by Mario
02:53
created
controller/main_controller.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,8 +66,7 @@
 block discarded – undo
66 66
 		user_loader $user_loader,
67 67
 		string $root_path,
68 68
 		string $php_ext
69
-	)
70
-	{
69
+	) {
71 70
 		$this->config = $config;
72 71
 		$this->container = $container;
73 72
 		$this->helper = $helper;
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
@@ -212,7 +212,7 @@
 block discarded – undo
212 212
 		if (!empty($keywords))
213 213
 		{
214 214
 			// Build pattern and keywords...
215
-			$keywords = array_map(function ($keyword) {
215
+			$keywords = array_map(function($keyword) {
216 216
 				return $this->db->sql_like_expression($this->db->get_any_char() . $keyword . $this->db->get_any_char());
217 217
 			}, $keywords);
218 218
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -212,7 +212,8 @@
 block discarded – undo
212 212
 		if (!empty($keywords))
213 213
 		{
214 214
 			// Build pattern and keywords...
215
-			$keywords = array_map(function ($keyword) {
215
+			$keywords = array_map(function ($keyword)
216
+			{
216 217
 				return $this->db->sql_like_expression($this->db->get_any_char() . $keyword . $this->db->get_any_char());
217 218
 			}, $keywords);
218 219
 
Please login to merge, or discard this patch.