Passed
Push — develop-3.3.x ( 0d6b30...b6d44e )
by Mario
02:37
created
actions/vars.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 	 */
106 106
 	private function add_predefined_lang_vars(): void
107 107
 	{
108
-		array_walk($this->dp_vars, function (&$value) {
108
+		array_walk($this->dp_vars, function(&$value) {
109 109
 			$value['name'] = $this->language->lang('PPDE_DP_' . trim($value['var'], '{}'));
110 110
 		});
111 111
 	}
Please login to merge, or discard this patch.
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,8 +41,7 @@  discard block
 block discarded – undo
41 41
 		config $config,
42 42
 		language $language,
43 43
 		user $user
44
-	)
45
-	{
44
+	) {
46 45
 		$this->actions_core = $actions_core;
47 46
 		$this->actions_currency = $actions_currency;
48 47
 		$this->config = $config;
@@ -105,7 +104,8 @@  discard block
 block discarded – undo
105 104
 	 */
106 105
 	private function add_predefined_lang_vars(): void
107 106
 	{
108
-		array_walk($this->dp_vars, function (&$value) {
107
+		array_walk($this->dp_vars, function (&$value)
108
+		{
109 109
 			$value['name'] = $this->language->lang('PPDE_DP_' . trim($value['var'], '{}'));
110 110
 		});
111 111
 	}
Please login to merge, or discard this patch.