Passed
Push — develop-3.3.x ( 95f552...b7db6e )
by Mario
03:10
created
actions/vars.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -73,14 +73,14 @@
 block discarded – undo
73 73
 	private function populate_template_vars(): array
74 74
 	{
75 75
 		return [
76
-			['var' => '{USER_ID}',         'value' => $this->user->data['user_id']],
77
-			['var' => '{USERNAME}',        'value' => $this->user->data['username']],
78
-			['var' => '{SITE_NAME}',       'value' => $this->config['sitename']],
79
-			['var' => '{SITE_DESC}',       'value' => $this->config['site_desc']],
80
-			['var' => '{BOARD_CONTACT}',   'value' => $this->config['board_contact']],
81
-			['var' => '{BOARD_EMAIL}',     'value' => $this->config['board_email']],
82
-			['var' => '{BOARD_SIG}',       'value' => $this->config['board_email_sig']],
83
-			['var' => '{DONATION_GOAL}',   'value' => $this->actions_currency->format_currency((float) $this->config['ppde_goal'])],
76
+			['var' => '{USER_ID}', 'value' => $this->user->data['user_id']],
77
+			['var' => '{USERNAME}', 'value' => $this->user->data['username']],
78
+			['var' => '{SITE_NAME}', 'value' => $this->config['sitename']],
79
+			['var' => '{SITE_DESC}', 'value' => $this->config['site_desc']],
80
+			['var' => '{BOARD_CONTACT}', 'value' => $this->config['board_contact']],
81
+			['var' => '{BOARD_EMAIL}', 'value' => $this->config['board_email']],
82
+			['var' => '{BOARD_SIG}', 'value' => $this->config['board_email_sig']],
83
+			['var' => '{DONATION_GOAL}', 'value' => $this->actions_currency->format_currency((float) $this->config['ppde_goal'])],
84 84
 			['var' => '{DONATION_RAISED}', 'value' => $this->actions_currency->format_currency((float) $this->config['ppde_raised'])],
85 85
 		];
86 86
 	}
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.