Passed
Push — develop ( f92676...fb0f5d )
by Reüel
04:18
created
classes/Payments/Items.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 	 * @param Item $item The item to add.
50 50
 	 */
51 51
 	public function addItem( Item $item ) {
52
-		$this->items[] = $item;
52
+		$this->items[ ] = $item;
53 53
 	}
54 54
 
55 55
 	/**
Please login to merge, or discard this patch.
admin/methods-wp-admin.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -28,23 +28,23 @@
 block discarded – undo
28 28
 				<td>
29 29
 					<?php
30 30
 
31
-					if ( isset( $method['icon'] ) ) {
32
-						printf( '<img src="%s" alt="" />', esc_attr( $method['icon'] ) );
31
+					if ( isset( $method[ 'icon' ] ) ) {
32
+						printf( '<img src="%s" alt="" />', esc_attr( $method[ 'icon' ] ) );
33 33
 					}
34 34
 
35 35
 					?>
36 36
 				</td>
37 37
 				<td>
38
-					<?php echo esc_html( $method['name'] ); ?>
38
+					<?php echo esc_html( $method[ 'name' ] ); ?>
39 39
 				</td>
40 40
 				<td>
41 41
 					<?php
42 42
 
43
-					if ( isset( $method['url'] ) ) {
43
+					if ( isset( $method[ 'url' ] ) ) {
44 44
 						printf(
45 45
 							'<a href="%s" target="_blank">%s</a>',
46
-							esc_attr( $method['url'] ),
47
-							esc_html( $method['url'] )
46
+							esc_attr( $method[ 'url' ] ),
47
+							esc_html( $method[ 'url' ] )
48 48
 						);
49 49
 					}
50 50
 
Please login to merge, or discard this patch.
views/ideal-test-cases.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 						sprintf(
67 67
 							/* translators: %s: formatted amount */
68 68
 							__( 'Transaction with <code>amount</code> = %s:', 'pronamic_ideal' ),
69
-							esc_html( IDeal::format_amount( $data['amount'] ) )
69
+							esc_html( IDeal::format_amount( $data[ 'amount' ] ) )
70 70
 						),
71 71
 						array(
72 72
 							'code' => array(),
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 					?>
77 77
 				</td>
78 78
 				<td>
79
-					<?php echo esc_html( $data['result'] ); ?>
79
+					<?php echo esc_html( $data[ 'result' ] ); ?>
80 80
 				</td>
81 81
 			</tr>
82 82
 
Please login to merge, or discard this patch.
views/eshop/settings-meta-box.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 	<?php $eshop_metabox_plugin->show_img( 'pronamic_ideal' ); ?>
16 16
 
17 17
 	<p class="cbox">
18
-		<input id="eshop_method_pronamic_ideal" name="eshop_method[]" type="checkbox" value="pronamic_ideal" <?php checked( in_array( 'pronamic_ideal', (array) $eshopoptions['method'], true ) ); ?> />
18
+		<input id="eshop_method_pronamic_ideal" name="eshop_method[]" type="checkbox" value="pronamic_ideal" <?php checked( in_array( 'pronamic_ideal', (array) $eshopoptions[ 'method' ], true ) ); ?> />
19 19
 
20 20
 		<label for="eshop_method_pronamic_ideal" class="eshopmethod">
21 21
 			<?php esc_html_e( 'Accept payment by iDEAL', 'pronamic_ideal' ); ?>
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
 	\Pronamic\WordPress\Pay\Admin\AdminModule::dropdown_configs( array(
32 32
 		'name'     => 'eshop_pronamic_ideal_config_id',
33
-		'selected' => @$eshopoptions['pronamic_ideal']['config_id'],
33
+		'selected' => @$eshopoptions[ 'pronamic_ideal' ][ 'config_id' ],
34 34
 	) );
35 35
 
36 36
 	?>
Please login to merge, or discard this patch.
templates/form.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
 	<div class="pronamic-pay-form-wrap">
33 33
 
34
-		<?php if ( ! is_singular( 'pronamic_pay_form' ) ) : ?>
34
+		<?php if ( !is_singular( 'pronamic_pay_form' ) ) : ?>
35 35
 
36 36
 			<h2 class="pronamic-pay-form-title"><?php echo esc_html( get_the_title( $id ) ); ?></h2>
37 37
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
 								<?php
54 54
 
55
-								$input_id = 'pronamic-pay-amount-' . esc_attr( $amount );
55
+								$input_id = 'pronamic-pay-amount-'.esc_attr( $amount );
56 56
 
57 57
 								$decimals = ( $amount % 100 > 0 ? 2 : 0 );
58 58
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
 			?>
141 141
 
142
-			<?php if ( ! empty( $fields ) ) : ?>
142
+			<?php if ( !empty( $fields ) ) : ?>
143 143
 
144 144
 				<fieldset>
145 145
 					<legend><?php esc_html_e( 'Payment Info', 'pronamic_ideal' ); ?></legend>
@@ -147,15 +147,15 @@  discard block
 block discarded – undo
147 147
 					<?php foreach ( $fields as $i => $field ) : ?>
148 148
 
149 149
 						<p class="pronamic-pay-form-row pronamic-pay-form-row-wide">
150
-							<label class="pronamic-pay-label" for="<?php echo esc_attr( $field['id'] ); ?>">
151
-								<?php echo esc_html( $field['label'] ); ?>
150
+							<label class="pronamic-pay-label" for="<?php echo esc_attr( $field[ 'id' ] ); ?>">
151
+								<?php echo esc_html( $field[ 'label' ] ); ?>
152 152
 								<span class="pronamic-pay-required-indicator">*</span>
153 153
 							</label>
154 154
 
155
-							<?php if ( 'select' === $field['type'] ) : ?>
155
+							<?php if ( 'select' === $field[ 'type' ] ) : ?>
156 156
 
157
-								<select id="<?php echo esc_attr( $field['id'] ); ?>" name="<?php echo esc_attr( $field['name'] ); ?>">
158
-									<?php echo Util::select_options_grouped( $field['choices'] ); ?>
157
+								<select id="<?php echo esc_attr( $field[ 'id' ] ); ?>" name="<?php echo esc_attr( $field[ 'name' ] ); ?>">
158
+									<?php echo Util::select_options_grouped( $field[ 'choices' ] ); ?>
159 159
 								</select>
160 160
 
161 161
 							<?php endif; ?>
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 
168 168
 			<?php endif; ?>
169 169
 
170
-			<?php if ( ! empty( $pronamic_pay_errors ) ) : ?>
170
+			<?php if ( !empty( $pronamic_pay_errors ) ) : ?>
171 171
 
172 172
 				<div class="pronamic-pay-errors">
173 173
 
Please login to merge, or discard this patch.
src/repositories.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 $working_dir      = getcwd();
4 4
 $project_dir      = dirname( __DIR__ );
5
-$repositories_dir = $project_dir . '/repositories';
5
+$repositories_dir = $project_dir.'/repositories';
6 6
 
7 7
 $organisations = array(
8 8
 	'wp-pay'            => array(
@@ -61,20 +61,20 @@  discard block
 block discarded – undo
61 61
 			$repository
62 62
 		);
63 63
 
64
-		$git_dir = $repositories_dir . '/' . $organisation . '/' . $repository;
64
+		$git_dir = $repositories_dir.'/'.$organisation.'/'.$repository;
65 65
 
66
-		if ( ! is_dir( $git_dir ) ) {
66
+		if ( !is_dir( $git_dir ) ) {
67 67
 			`git clone $git_url $git_dir`;
68 68
 		}
69 69
 
70 70
 		// Git flow
71 71
 		chdir( $git_dir );
72 72
 
73
-		if ( isset( $argv[1] ) && 'develop' === $argv[1] ) {
73
+		if ( isset( $argv[ 1 ] ) && 'develop' === $argv[ 1 ] ) {
74 74
 			`git checkout develop`;
75 75
 		}
76 76
 
77
-		if ( isset( $argv[1] ) && 'pull' === $argv[1] ) {
77
+		if ( isset( $argv[ 1 ] ) && 'pull' === $argv[ 1 ] ) {
78 78
 			$command = 'git pull';
79 79
 
80 80
 			echo $command, PHP_EOL;
Please login to merge, or discard this patch.
src/changelog-md/CHANGELOG.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 header( 'Content-Type: text/plain' );
4 4
 
5
-$data      = file_get_contents( __DIR__ . '/../changelog.json' );
5
+$data      = file_get_contents( __DIR__.'/../changelog.json' );
6 6
 $changelog = json_decode( $data );
7 7
 
8 8
 function render_changes( $changes, $level = 0 ) {
Please login to merge, or discard this patch.
src/readme-txt/extensions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$data       = file_get_contents( __DIR__ . '/../extensions.json' );
3
+$data       = file_get_contents( __DIR__.'/../extensions.json' );
4 4
 $extensions = json_decode( $data );
5 5
 
6 6
 foreach ( $extensions as $extension ) {
Please login to merge, or discard this patch.
src/readme-txt/changelog.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$data      = file_get_contents( __DIR__ . '/../changelog.json' );
3
+$data      = file_get_contents( __DIR__.'/../changelog.json' );
4 4
 $changelog = json_decode( $data );
5 5
 
6 6
 function render_changes( $changes, $level = 0 ) {
Please login to merge, or discard this patch.