Failed Conditions
Push — master ( b549f2...090668 )
by Remco
10:21 queued 03:46
created
src/LocaleHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 		 * @link https://www.php.net/array_search
73 73
 		 */
74 74
 		if ( array_key_exists( $search, $supported ) ) {
75
-			return $supported[ $search ];
75
+			return $supported[$search];
76 76
 		}
77 77
 
78 78
 		return null;
Please login to merge, or discard this patch.
views/page-customer.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -209,13 +209,16 @@
 block discarded – undo
209 209
 						<td colspan="4"><?php esc_html_e( 'No mandates found.', 'pronamic_ideal' ); ?></td>
210 210
 					</tr>
211 211
 
212
-				<?php else : ?>
212
+				<?php else {
213
+	: ?>
213 214
 
214 215
 					<?php foreach ( $mollie_customer_mandates as $mandate ) : ?>
215 216
 
216 217
 						<tr>
217 218
 							<td>
218
-								<code><?php echo \esc_html( $mandate->id ); ?></code>
219
+								<code><?php echo \esc_html( $mandate->id );
220
+}
221
+?></code>
219 222
 							</td>
220 223
 							<td>
221 224
 								<?php
Please login to merge, or discard this patch.