Passed
Push — develop-3.3.x ( 7c86e5...b7db6e )
by Mario
02:42
created
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.
actions/currency.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@
 block discarded – undo
35 35
 		locale_icu $locale,
36 36
 		currency_operator $operator,
37 37
 		template $template
38
-	)
39
-	{
38
+	) {
40 39
 		$this->entity = $entity;
41 40
 		$this->locale = $locale;
42 41
 		$this->operator = $operator;
Please login to merge, or discard this patch.